Package wt.access
Class MismatchedAccessControlRulesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
wt.access.AccessControlException
wt.access.MismatchedAccessControlRulesException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
public class MismatchedAccessControlRulesException
extends AccessControlException
implements Serializable
Thrown in situations where a policy access control rule to be deleted does
not match the existing policy access control rule on the system. The exception
will contain the set of access control rules specified for deletion whose permissions
differed from those set on existing rules.
Supported API: true
Extendable: false
Supported API: true
Extendable: false
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo argument constructor.Constructor that takes an exception as an argument.Constructor that takes a non-localized message and an exception as arguments.MismatchedAccessControlRulesException(Exception e, String rb, String key, Object[] params) Constructor that takes an exception, a resource bundle, a key and additional parameters to use in the localized message as arguments.Constructor that takes a non-localized message as an 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
-
MismatchedAccessControlRulesException
public MismatchedAccessControlRulesException()No argument constructor.
Supported API: true -
MismatchedAccessControlRulesException
Constructor that takes a non-localized message as an argument.
Supported API: true- Parameters:
msg- non-localized message
-
MismatchedAccessControlRulesException
Constructor that takes an exception as an argument. The exception can be retrieved using the getNestedException method.
Supported API: true- Parameters:
e- exception
-
MismatchedAccessControlRulesException
Constructor that takes a non-localized message and an exception as arguments.
Supported API: true- Parameters:
e- exceptionmsg- non-localized message
-
MismatchedAccessControlRulesException
Constructor that takes an exception, a resource bundle, a key and additional parameters to use in the localized message as arguments.
Supported API: true- Parameters:
e- exceptionrb- resource bundle namekey- resource bundle keyparams- parameters to use in the localized message
-