Package com.saperion.exception
Class SaDDCException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.saperion.exception.SaBasicException
com.saperion.exception.SaDDCException
- All Implemented Interfaces:
Serializable
DDC related exception raised in the following situations:
//GetDefinitions"DDC files could not be retrieved",
//GetFields "database definition could not be opened",
"database definition invalid, possibly empty DB mappings or invalid data
source".
//GetDefinitions
//GetFields
- Author:
- rad
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSaDDCException
(String message) ConstructsSaDDCException
with the specified message.SaDDCException
(String message, Throwable cause) ConstructsSaDDCException
with the specified message and nested exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SaDDCException
ConstructsSaDDCException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- See Also:
-
SaDDCException
ConstructsSaDDCException
with the specified message and nested exception.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- See Also:
-