Package xal.rbac
Class AccessDeniedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
xal.rbac.AccessDeniedException
- All Implemented Interfaces:
Serializable
AccessDeniedException
is an exception which is thrown when the
user does not have permission to executed the action, because he is no longer
logged in.- Author:
- Jaka Bobnar
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAccessDeniedException
(String message) Constructs a new exception with the specified detail message.AccessDeniedException
(Throwable 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
-
AccessDeniedException
Constructs a new exception with the specified detail message. The cause is not initialised, and may subsequently be initialised by a call toThrowable.initCause(Throwable)
.- Parameters:
message
- the detailed message of the exception
-
AccessDeniedException
-