Class SelfServiceException

java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.exception.OIMServiceException
oracle.iam.platform.utils.SuperException
oracle.iam.selfservice.exception.SelfServiceException
All Implemented Interfaces:
Serializable, oracle.iam.platform.utils.io.XmlPrintable, OIMGenericExceptionIntf
Direct Known Subclasses:
UnauthenticatedSelfServiceException

public abstract class SelfServiceException extends oracle.iam.platform.utils.SuperException implements OIMGenericExceptionIntf
See Also:
  • Constructor Details

    • SelfServiceException

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

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

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

      public SelfServiceException(String message, String errorCode)
      Constructs a SelfServiceException with the specified detail message and errorCode.
      Parameters:
      message - the detail message
      errorCode - the error code
    • SelfServiceException

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

      public SelfServiceException(Throwable cause)
      Constructs a SelfServiceException with the specified cause.
      Parameters:
      cause - the cause
  • Method Details