Class Question.QuestionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.marcpg.libpg.formular.question.Question.QuestionException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Question
Represents an exception that's thrown by a question.
This is typically only caused by manual code execution and not by user input.
This is typically only caused by manual code execution and not by user input.
- See Also:
-
Constructor Summary
ConstructorDescriptionQuestionException
(String message, @NotNull Question question) Creates a newQuestion.QuestionException
with a description and theQuestion
type which caused it. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
QuestionException
Creates a newQuestion.QuestionException
with a description and theQuestion
type which caused it.- Parameters:
message
- A short description of what went wrong.question
- The question which caused this exception.
-