Package com.spertus.jacquard.exceptions
Class InternalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.spertus.jacquard.exceptions.InternalException
- All Implemented Interfaces:
AutograderException
,Serializable
Signals that an internal error occurred within the autograder.
- See Also:
-
Constructor Summary
ConstructorDescriptionInternalException
(String message) Constructs anInternalException
with the specified message.InternalException
(String message, Throwable cause) Constructs anInternalException
with the specified message and cause.InternalException
(Throwable cause) Constructs anInternalException
with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalException
Constructs anInternalException
with the specified message.- Parameters:
message
- an explanation
-
InternalException
Constructs anInternalException
with the specified message and cause.- Parameters:
message
- an explanationcause
- the underlying cause
-
InternalException
Constructs anInternalException
with the specified cause.- Parameters:
cause
- the underlying cause
-