Package com.sun.identity.policy
Class NoPermissionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.identity.policy.PolicyException
-
- com.sun.identity.policy.NoPermissionException
-
- All Implemented Interfaces:
com.sun.identity.shared.locale.L10NMessage
,Serializable
@SupportedAll public class NoPermissionException extends PolicyException
Exception thrown if a policy operation attempted could not be done due to insufficient permissions- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.sun.identity.policy.PolicyException
CONDITION_COLLECTION, ORGANIZATION, POLICY, REFERRAL_COLLECTION, REFERRAL_TYPE, RESPONSE_PROVIDER_COLLECTION, RULE, SERVICE, SUBJECT_TYPE, USER_COLLECTION
-
-
Constructor Summary
Constructors Constructor Description NoPermissionException()
No argument constructorNoPermissionException(String msg)
ConstructorNoPermissionException(String rbName, String errCode, Object[] args)
ConstructorNoPermissionException(String rbName, String errCode, Object[] args, Throwable t)
ConstructorNoPermissionException(Throwable t)
Constructor
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoPermissionException
public NoPermissionException()
No argument constructor
-
NoPermissionException
public NoPermissionException(String msg)
Constructor- Parameters:
msg
- exception message
-
NoPermissionException
public NoPermissionException(String rbName, String errCode, Object[] args)
Constructor- Parameters:
rbName
- Resource bundle name of exception messageerrCode
- id used with resource bundle to get error messageargs
- any arguments for message formatting. null if no additional arguments are necessary
-
NoPermissionException
public NoPermissionException(String rbName, String errCode, Object[] args, Throwable t)
Constructor- Parameters:
rbName
- Resource bundle name of exception messageerrCode
- id used with resource bundle to get error messageargs
- any arguments for message formatting. null if no additional arguments are necessaryt
- nested root cause exception
-
NoPermissionException
public NoPermissionException(Throwable t)
Constructor- Parameters:
t
- nested root cause exception
-
-