Class UnauthorizedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.pingidentity.sdk.provision.exception.IdentityStoreException
-
- com.pingidentity.sdk.provision.exception.UnauthorizedException
-
- All Implemented Interfaces:
Serializable
public class UnauthorizedException extends IdentityStoreException
AnIdentityStoreExceptionthat should be thrown when an Identity Store Provisioner operation cannot be completed because the caller is not authorized to perform the operation.- Since:
- 7.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnauthorizedException(String message)Constructs anUnauthorizedExceptionwith the specified detail message.UnauthorizedException(String message, Throwable cause)Constructs anUnauthorizedExceptionwith the specified detail message and cause.UnauthorizedException(Throwable cause)Constructs anUnauthorizedExceptionwith the specified cause.UnauthorizedException(List<String> messages)Constructs anUnauthorizedExceptionwith the specified detail messages.UnauthorizedException(List<String> messages, Throwable cause)Constructs anUnauthorizedExceptionwith the specified detail messages and cause.
-
Method Summary
-
Methods inherited from class com.pingidentity.sdk.provision.exception.IdentityStoreException
getMessage, getMessages
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnauthorizedException
public UnauthorizedException(String message)
Constructs anUnauthorizedExceptionwith the specified detail message.
-
UnauthorizedException
public UnauthorizedException(List<String> messages)
Constructs anUnauthorizedExceptionwith the specified detail messages.
-
UnauthorizedException
public UnauthorizedException(Throwable cause)
Constructs anUnauthorizedExceptionwith the specified cause.
-
UnauthorizedException
public UnauthorizedException(String message, Throwable cause)
Constructs anUnauthorizedExceptionwith the specified detail message and cause.
-
-