Package com.sas.lsaf.client
Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.sas.lsaf.core.AbstractRuntimeException
-
- com.sas.lsaf.client.ConfigurationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationException extends AbstractRuntimeException
Thrown when a configuration error is detected. See the message text for more specifics.- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigurationException(java.lang.String message)
Constructs aConfigurationException
with the specified message.ConfigurationException(java.lang.String message, java.lang.Throwable cause)
Constructs aConfigurationException
with the specified message and root cause.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractRuntimeException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException(java.lang.String message)
Constructs aConfigurationException
with the specified message.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).
-
ConfigurationException
public ConfigurationException(java.lang.String message, java.lang.Throwable cause)
Constructs aConfigurationException
with the specified message and root cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractRuntimeException.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-