Class DatabaseConfigurationException

All Implemented Interfaces:
Serializable

public class DatabaseConfigurationException
extends IllegalArgumentException
Thrown to indicate that a Database configuration error has been detected. This may happen if a DatabaseConfigurator throws an Exception of if the server-sql.properties properties file contains configuration errors.
Since:
1.0
Author:
Nicolas de Pomereu
See Also:
Serialized Form
  • Constructor Details

    • DatabaseConfigurationException

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

      public DatabaseConfigurationException​(String s)
      Constructs a new DatabaseConfigurationException with the specified detail message.
      Parameters:
      s - the detail message.
    • DatabaseConfigurationException

      public DatabaseConfigurationException​(String message, Throwable cause)
      Constructs a new DatabaseConfigurationException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)