Class NotImplementedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.pingidentity.sdk.provision.exception.IdentityStoreException
-
- com.pingidentity.sdk.provision.exception.NotImplementedException
-
- All Implemented Interfaces:
Serializable
public class NotImplementedException extends IdentityStoreException
AnIdentityStoreExceptionthat should be thrown when an Identity Store Provisioner operation cannot be completed because the operation has not been implemented.- Since:
- 7.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotImplementedException(String message)Constructs aNotImplementedExceptionwith the specified detail message.NotImplementedException(String message, Throwable cause)Constructs aNotImplementedExceptionwith the specified detail message and cause.NotImplementedException(Throwable cause)Constructs aNotImplementedExceptionwith the specified cause.NotImplementedException(List<String> messages)Constructs aNotImplementedExceptionwith the specified detail messages.NotImplementedException(List<String> messages, Throwable cause)Constructs aNotImplementedExceptionwith 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
-
NotImplementedException
public NotImplementedException(String message)
Constructs aNotImplementedExceptionwith the specified detail message.
-
NotImplementedException
public NotImplementedException(List<String> messages)
Constructs aNotImplementedExceptionwith the specified detail messages.
-
NotImplementedException
public NotImplementedException(Throwable cause)
Constructs aNotImplementedExceptionwith the specified cause.
-
NotImplementedException
public NotImplementedException(String message, Throwable cause)
Constructs aNotImplementedExceptionwith the specified detail message and cause.
-
-