Class ValidationFailedException

All Implemented Interfaces:
Serializable

public class ValidationFailedException extends InvalidTokenException
See Also:
  • Constructor Details

    • ValidationFailedException

      public ValidationFailedException()

      A default constructor.

    • ValidationFailedException

      public ValidationFailedException(String str)

      A constructor that accepts an error message. The error message can be retrieved using the getMessage() API.

      Parameters:
      str - An error message.
    • ValidationFailedException

      public ValidationFailedException(Throwable t)

      A constructor that accepts a Throwable. The Throwable can be retrieved using the getExceptions() or getCause() API.

      Parameters:
      t - Any exception type that extends Throwable.
    • ValidationFailedException

      public ValidationFailedException(String str, Throwable t)

      A constructor accepts an error message and original exception. The exception will be added to an ArrayList and other exceptions may be added along the way. The error message can be retrieved using the getMessage() API.

      Parameters:
      str - An error message.
      t - Any exception type that extends Throwable.