Package com.sas.lsaf.clinical.dictionary
Class DictionaryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sas.lsaf.core.AbstractCheckedException
-
- com.sas.lsaf.clinical.dictionary.DictionaryException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DictionaryNotFoundException
public abstract class DictionaryException extends AbstractCheckedException
Root of the hierarchy of all checked dictionary exceptions.Abstract because this exception should not be constructed directly. Rather, a more detailed subclass should be constructed and thrown.
- Since:
- 2.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DictionaryException(java.lang.String message)
Constructs anDictionaryException
with the specified detail message.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
DictionaryException
public DictionaryException(java.lang.String message)
Constructs anDictionaryException
with the specified detail message.- Parameters:
message
- The detail message (that is saved for later retrieval by theAbstractCheckedException.getMessage()
method).
-
-