Class SubsystemException

All Implemented Interfaces:
Serializable

public class SubsystemException extends RuntimeException
A Subsystem exception used to indicate a problem.
Author:
$Id: ad56ae269d24c698380e80d2f91c76d61ee121ff $
See Also:
  • Constructor Details

    • SubsystemException

      public SubsystemException()
      Construct a Subsystem exception with no message.
    • SubsystemException

      public SubsystemException(String message)
      Construct a Subsystem exception specifying a message.
      Parameters:
      message - The message to include in the exception.
    • SubsystemException

      public SubsystemException(Throwable cause)
      Construct a Subsystem exception specifying a cause.
      Parameters:
      cause - The cause of the exception.
    • SubsystemException

      public SubsystemException(String message, Throwable cause)
      Construct a Subsystem exception specifying a message and a cause.
      Parameters:
      message - The message to include in the exception.
      cause - The cause of the exception.