Class InstructionExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.zemco.codegame.execution.instructions.InstructionExecutionException
- All Implemented Interfaces:
Serializable
Thrown when an illegal state during instruction execution is reached.
- Author:
- Erik Zemčík
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstructionExecutionException(String message) Creates an instance ofInstructionExecutionException.InstructionExecutionException(String message, Throwable cause) Creates an instance ofInstructionExecutionException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InstructionExecutionException
Creates an instance ofInstructionExecutionException.- Parameters:
message- detail message containing information about the instruction execution failure
-
InstructionExecutionException
Creates an instance ofInstructionExecutionException.- Parameters:
message- detail message containing information about the instruction execution failurecause- cause of the instruction execution failure
-