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
ConstructorsConstructorDescriptionInternalException(String message) Constructs anInternalExceptionwith the specified message.InternalException(String message, Throwable cause) Constructs anInternalExceptionwith the specified message and cause.InternalException(Throwable cause) Constructs anInternalExceptionwith 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 anInternalExceptionwith the specified message.- Parameters:
message- an explanation
-
InternalException
Constructs anInternalExceptionwith the specified message and cause.- Parameters:
message- an explanationcause- the underlying cause
-
InternalException
Constructs anInternalExceptionwith the specified cause.- Parameters:
cause- the underlying cause
-