Class AccessControlException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.deltava.util.ControllerException
org.deltava.commands.CommandException
org.deltava.security.command.AccessControlException
- All Implemented Interfaces:
Serializable
An exception thrown by an access controller. By default, stack traces of access
control exceptions are not logged.
- Since:
- 1.0
- Version:
- 6.0
- Author:
- Luke
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCretes a new access control exception with a particular message.AccessControlException
(String msg, boolean doWarn) Creates a new access control exception with a particular message, and optionally sets the warning flag. -
Method Summary
Methods inherited from class org.deltava.util.ControllerException
getForwardURL, getLogStackDump, getStatusCode, isSuppressed, isWarning, setForwardURL, setLogStackDump, setStatusCode, setSuppressed, setWarning
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AccessControlException
AccessControlException(String msg) Cretes a new access control exception with a particular message.- Parameters:
msg
- the message
-
AccessControlException
AccessControlException(String msg, boolean doWarn) Creates a new access control exception with a particular message, and optionally sets the warning flag.- Parameters:
msg
- the messagedoWarn
- TRUE if the exception should be logged as a warning, otherwise FALSE
-