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:
java.io.Serializable
- Direct Known Subclasses:
SectionNotFoundException
public abstract class SectionException extends AbstractCheckedException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SectionException(java.lang.String message)
Constructs aSectionException
with the specified detail message.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
SectionException
public SectionException(java.lang.String message)
Constructs aSectionException
with the specified detail message.- Parameters:
message
- The detailed message (which is saved for later retrieval by theAbstractCheckedException.getMessage()
method).
-
-