Class ProblemException

All Implemented Interfaces:
Serializable

public class ProblemException extends FrameworkException
An exception that originated from a problem.
See Also:
  • Constructor Details

    • ProblemException

      public ProblemException(Problem problem)
      Constructs an problem exception originating from the specified problem.
      Parameters:
      problem - the problem responsible for this exception
    • ProblemException

      public ProblemException(Problem problem, String message, Throwable cause)
      Constructs an problem exception originating from the specified problem with the given cause.
      Parameters:
      problem - the problem responsible for this exception
      message - the message describing this exception
      cause - the cause of this exception
    • ProblemException

      public ProblemException(Problem problem, String message)
      Constructs an problem exception originating from the specified problem with the given message.
      Parameters:
      problem - the problem responsible for this exception
      message - the message describing this exception
    • ProblemException

      public ProblemException(Problem problem, Throwable cause)
      Constructs an problem exception originating from the specified problem with the given cause.
      Parameters:
      problem - the problem responsible for this exception
      cause - the cause of this exception
  • Method Details

    • getProblem

      public Problem getProblem()
      Returns the problem responsible for this exception.
      Returns:
      the problem responsible for this exception