Package com.sap.security.um
Class UMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sap.security.um.UMException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
PersistenceException
,UnsupportedUserAttributeException
Base class for all declared exceptions thrown by the UM bundle.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUMException
(String technicalMessage) Constructs a new UM Exception with the specified detail message.UMException
(String technicalMessage, Throwable thr) Constructs a new UM Exception with the specified detail message and cause.UMException
(Throwable thr) Constructs a new UM Exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UMException
Constructs a new UM Exception with the specified detail message.- Parameters:
technicalMessage
- - the detail message
-
UMException
Constructs a new UM Exception with the specified cause.- Parameters:
thr
- - the root cause for creating UMException
-
UMException
Constructs a new UM Exception with the specified detail message and cause.- Parameters:
technicalMessage
- - the detail messagethr
- - the root cause for creating UMException
-