Package wt.access
Class AccessControlException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
wt.access.AccessControlException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
- Direct Known Subclasses:
MismatchedAccessControlRulesException,NotAuthorizedException,OwnerLosingAccessException
Thrown when the access control service detects an unexpected error.
Supported API: true
Extendable: false
AccessControlException
is the base class of the exception hierarchy for the access control package.
Supported API: true
Extendable: false
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo argument constructor.Constructor that takes an execption as argument.AccessControlException(Exception e, String msg) Constructor that takes a non-localized message and an exeption as argument.AccessControlException(Exception e, String rb, String key, Object[] params) Constructor that takes and exception, a resource bundle, a key and additional parameters to use in the localized message.AccessControlException(String message) Constructor that takes a non-localized message as argument. -
Method Summary
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, getWTMessage, printStackTrace, printStackTrace, printStackTrace, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
Constructor Details
-
AccessControlException
public AccessControlException()No argument constructor.
Supported API: true -
AccessControlException
Constructor that takes a non-localized message as argument.
Supported API: true- Parameters:
message- a non-localized message
-
AccessControlException
Constructor that takes an execption as argument. Exception can be retrieved using getNestedException method.
Supported API: true- Parameters:
e- exception
-
AccessControlException
Constructor that takes a non-localized message and an exeption as argument.
Supported API: true- Parameters:
e- exceptionmsg- a non-localized message
-
AccessControlException
Constructor that takes and exception, a resource bundle, a key and additional parameters to use in the localized message.
Supported API: true- Parameters:
e- exceptionrb- resource bundle namekey- resource bundle keyparams- parameters to use in the localized message
-