Class ParseException

All Implemented Interfaces:
Serializable

public class ParseException extends GeneralException
Parse exception.
See Also:
  • Constructor Details

    • ParseException

      public ParseException(String message)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
    • ParseException

      public ParseException(String message, Throwable cause)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
      cause - The exception cause, null if not specified.
    • ParseException

      public ParseException(String message, ErrorObject error)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
      error - The associated error, null if not specified.
    • ParseException

      public ParseException(String message, ErrorObject error, Throwable cause)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
      error - The associated error, null if not specified.
      cause - The exception cause, null if not specified.
    • ParseException

      public ParseException(String message, ErrorObject error, ClientID clientID, URI redirectURI, ResponseMode responseMode, State state)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
      error - The associated error, null if not specified.
      clientID - The associated client identifier. Must not be null.
      redirectURI - The associated redirection URI. Must not be null.
      responseMode - The optional associated response mode, null if not specified.
      state - The optional associated state parameter, null if not specified.
    • ParseException

      public ParseException(String message, ErrorObject error, ClientID clientID, URI redirectURI, ResponseMode responseMode, State state, Throwable cause)
      Creates a new parse exception.
      Parameters:
      message - The exception message. May be null.
      error - The associated error, null if not specified.
      clientID - The associated client identifier. Must not be null.
      redirectURI - The associated redirection URI. Must not be null.
      responseMode - The optional associated response mode, null if not specified.
      state - The optional associated state parameter, null if not specified.
      cause - The exception cause, null if not specified.