Klasse ConfigurationException

Alle implementierten Schnittstellen:
Serializable

public class ConfigurationException extends RuntimeException
Thrown when a configuration error occured.
Siehe auch:
  • Konstruktordetails

    • ConfigurationException

      public ConfigurationException()
      Constructs a new instance with no detail message.
    • ConfigurationException

      public ConfigurationException(String message)
      Constructs a new instance with the specified detail message.
      Parameter:
      message - The detail message.
    • ConfigurationException

      public ConfigurationException(String message, Throwable cause)
      Constructs a new instance with the specified detail message and cause.
      Parameter:
      message - The detail message.
      cause - The exception's cause.
    • ConfigurationException

      public ConfigurationException(Throwable cause)
      Constructs a new instance with the specified cause and a detail message of (cause == null ? null : cause.toString()) (which typically contains the class and detail message of cause).
      Parameter:
      cause - The exception's cause.