Class OperationFailedException

All Implemented Interfaces:
Serializable

public class OperationFailedException extends OperationalException
A problem occurred in system execution.
See Also:
  • Constructor Details

    • OperationFailedException

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

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

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