Package com.sas.lsaf.clinical.tlf
Class SectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sas.lsaf.core.AbstractCheckedException
com.sas.lsaf.clinical.tlf.SectionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SectionNotFoundException
The class that represents all section checked exceptions. This class is abstract because this exception should not be
constructed directly. Rather, a more detailed subclass should be constructed and thrown.
- Since:
- 2.5
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSectionException(String message) Constructs aSectionExceptionwith 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
-
SectionException
Constructs aSectionExceptionwith the specified detail message.- Parameters:
message- The detailed message (which is saved for later retrieval by theAbstractCheckedException.getMessage()method).
-