Class ConfigurationErrorException

All Implemented Interfaces:
Serializable

public class ConfigurationErrorException extends OperationalException
An error occurred configuring the OSID implementation during initialization and the implementation cannot be used. The configuration should be verified against the provider specifications.
See Also:
  • Constructor Details

    • ConfigurationErrorException

      public ConfigurationErrorException(String msg)
      Constructs a ConfigurationErrorException with the specified detail message. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
    • ConfigurationErrorException

      public ConfigurationErrorException(String msg, Throwable t)
      Constructs a ConfigurationErrorException with the specified detail message and cause. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
      t - the cause of the exception
    • ConfigurationErrorException

      public ConfigurationErrorException(Throwable t)
      Constructs a ConfigurationErrorException with the specified cause and a detail message of cause.toString() which typically contains the class and detail message of cause.
      Parameters:
      t - the cause of the exception