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:
java.io.Serializable
public class SaDDCException extends SaBasicException
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".
- Author:
- rad
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SaDDCException(java.lang.String message)
ConstructsSaDDCException
with the specified message.SaDDCException(java.lang.String message, java.lang.Throwable cause)
ConstructsSaDDCException
with the specified message and nested exception.
-
-
-
Constructor Detail
-
SaDDCException
public SaDDCException(java.lang.String message)
ConstructsSaDDCException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).- See Also:
SaBasicException(String)
-
SaDDCException
public SaDDCException(java.lang.String message, java.lang.Throwable cause)
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:
SaBasicException(String,Throwable)
-
-