Class PermissionDeniedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.identityconnectors.framework.common.exceptions.ConnectorException
-
- org.identityconnectors.framework.common.exceptions.ConnectorSecurityException
-
- org.identityconnectors.framework.common.exceptions.PermissionDeniedException
-
- All Implemented Interfaces:
Serializable
public class PermissionDeniedException extends ConnectorSecurityException
Thrown when the target resource will not allow aConnector
to perform a particular operation. An instance ofPermissionDeniedException
generally describes a native error returned by (or wraps a native exception thrown by) the target resource.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PermissionDeniedException()
PermissionDeniedException(String message)
PermissionDeniedException(String message, Throwable ex)
PermissionDeniedException(Throwable ex)
-
Method Summary
-
Methods inherited from class org.identityconnectors.framework.common.exceptions.ConnectorException
rethrow, wrap
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PermissionDeniedException
public PermissionDeniedException()
- See Also:
ConnectorException()
-
PermissionDeniedException
public PermissionDeniedException(String message)
- See Also:
ConnectorException(String)
-
PermissionDeniedException
public PermissionDeniedException(Throwable ex)
- See Also:
ConnectorException(Throwable)
-
PermissionDeniedException
public PermissionDeniedException(String message, Throwable ex)
- See Also:
ConnectorException(String, Throwable)
-
-