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