Klasse ValidatorException

Alle implementierten Schnittstellen:
Serializable

public class ValidatorException extends RuntimeException
Diese Exception wird verwendet, wenn bei Verwendung der Validatoren Fehler auftreten.
Siehe auch:
  • Konstruktordetails

    • ValidatorException

      public ValidatorException()
      Erstellt eine neue Validator-Exception
    • ValidatorException

      public ValidatorException(String message)
      Erstellt eine neue Validator-Exception mit der übergebenen Nachricht.
      Parameter:
      message - die Nachricht der Exception (siehe Throwable.getMessage())
    • ValidatorException

      public ValidatorException(String message, Throwable cause)
      Erstellt eine neue Validator-Exception mit der übergebenen Nachricht und dem übergebenen Grund.
      Parameter:
      message - die Nachricht der Exception (siehe Throwable.getMessage())
      cause - der Grund für die Exception oder null
    • ValidatorException

      public ValidatorException(Throwable cause)
      Erstellt eine neue Validator-Exception mit dem übergebenen Grund.
      Parameter:
      cause - der Grund für die Exception oder null