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:
Serializable
- Direct Known Subclasses:
DictionaryNotFoundException
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:
-
Constructor Summary
ConstructorsConstructorDescriptionDictionaryException(String message) Constructs anDictionaryExceptionwith the specified detail message. -
Method Summary
Methods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DictionaryException
Constructs anDictionaryExceptionwith the specified detail message.- Parameters:
message- The detail message (that is saved for later retrieval by theAbstractCheckedException.getMessage()method).
-