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