Package org.ametys.runtime.model.checker
Class ItemCheckerTestFailureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ametys.runtime.model.checker.ItemCheckerTestFailureException
-
- All Implemented Interfaces:
Serializable
public class ItemCheckerTestFailureException extends RuntimeException
Class handling the parameter checkers' test failures.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ItemCheckerTestFailureException()
Constructor without argumentsItemCheckerTestFailureException(String msg)
Constructor with a messageItemCheckerTestFailureException(String msg, Throwable cause)
Constructor with the message and the causeItemCheckerTestFailureException(Throwable cause)
Constructor with the message and the cause
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ItemCheckerTestFailureException
public ItemCheckerTestFailureException()
Constructor without arguments
-
ItemCheckerTestFailureException
public ItemCheckerTestFailureException(String msg)
Constructor with a message- Parameters:
msg
- The exception message
-
ItemCheckerTestFailureException
public ItemCheckerTestFailureException(String msg, Throwable cause)
Constructor with the message and the cause- Parameters:
msg
- the messagecause
- the cause
-
ItemCheckerTestFailureException
public ItemCheckerTestFailureException(Throwable cause)
Constructor with the message and the cause- Parameters:
cause
- the cause
-
-