Package com.gooddata.md
Class ObjCreateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.gooddata.GoodDataException
-
- com.gooddata.md.ObjCreateException
-
- All Implemented Interfaces:
Serializable
public class ObjCreateException extends com.gooddata.GoodDataExceptionMetadata object couldn't be created- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjCreateException(String message, T obj)Construct a new instance of ObjCreateException.ObjCreateException(T obj, Throwable cause)Construct a new instance of ObjCreateException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ObjCreateException
public ObjCreateException(T obj, Throwable cause)Construct a new instance of ObjCreateException.- Type Parameters:
T- the type of metadata object you're trying to create- Parameters:
obj- the metadata object you're trying to createcause- the cause of error
-
ObjCreateException
public ObjCreateException(String message, T obj)
Construct a new instance of ObjCreateException.- Type Parameters:
T- the type of metadata object you're trying to create- Parameters:
message- the detail messageobj- the metadata object you're trying to create
-
-