Package com.sas.lsaf.security.user
Class UserException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sas.lsaf.core.AbstractCheckedException
-
- com.sas.lsaf.security.user.UserException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UserDeleteException
,UserExistsException
,UserLockedException
,UserNotFoundException
,UserPasswordException
,UserUnlockedException
public abstract class UserException extends AbstractCheckedException
Root of the hierarchy of all user account checked exceptions within the SAS Life Science Analytics Framework Java API. Provides a way of wrapping checkedExceptions
with a root cause.Abstract because this exception should not be constructed directly. Rather, a more detailed subclass should be constructed and thrown.
- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserException(java.lang.String message)
Constructs anUserException
with the specified detail message.
-
Method Summary
-
Methods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCause
-
-
-
-
Constructor Detail
-
UserException
public UserException(java.lang.String message)
Constructs anUserException
with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by theAbstractCheckedException.getMessage()
method).
-
-