Class ValidationFailedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.exception.OIMServiceException
oracle.iam.platform.utils.SuperException
oracle.iam.selfservice.exception.AuthSelfServiceException
oracle.iam.selfservice.exception.ValidationFailedException
All Implemented Interfaces:
Serializable, oracle.iam.platform.utils.io.XmlPrintable

public class ValidationFailedException extends AuthSelfServiceException
Thrown if the data validation fails while performing the operation.
See Also:
  • Constructor Details

    • ValidationFailedException

      public ValidationFailedException()
      Constructs a ValidationFailedException with null as its detail message.
    • ValidationFailedException

      public ValidationFailedException(String message)
      Constructs a ValidationFailedException with the specified detail message.
      Parameters:
      message - the detail message
    • ValidationFailedException

      public ValidationFailedException(String message, Throwable cause)
      Constructs a ValidationFailedException with the specified detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause
    • ValidationFailedException

      public ValidationFailedException(Throwable cause)
      Constructs a ValidationFailedException with the specified cause.
      Parameters:
      cause - the cause
    • ValidationFailedException

      public ValidationFailedException(String message, String errorCode, String[] errorData)
      Constructs a ValidationFailedException with the specified message, errorCode and params.
      Parameters:
      message - the detail message
      errorCode - the eror code for the message
      errorData - the parameters to fill in the error message.
    • ValidationFailedException

      public ValidationFailedException(String message, String errorCode, String[] errorData, Throwable cause)
      Constructs a ValidationFailedException with the specified message, errorCode and params.
      Parameters:
      message - the detail message
      errorCode - the eror code for the message
      errorData - the parameters to fill in the error message.
      cause - the cause
  • Method Details