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