Class OperationalException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConfigurationErrorException, OperationFailedException, TransactionFailureException

public class OperationalException extends OsidException
Operational errors result from failures in the system. These errors are only permitted where specified and should be handled directly by the consumer application.
See Also:
  • Constructor Details

    • OperationalException

      public OperationalException(String msg)
      Constructs a OperationalException 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
    • OperationalException

      public OperationalException(String msg, Throwable t)
      Constructs a OperationalException 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
    • OperationalException

      public OperationalException(Throwable t)
      Constructs a OperationalException 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