Class JVMCheckpointException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.openj9.criu.JVMCRIUException
org.eclipse.openj9.criu.JVMCheckpointException
- All Implemented Interfaces:
Serializable
An exception representing a failure in the JVM before checkpoint.
- See Also:
-
Field Summary
Fields declared in class JVMCRIUException
errorCode -
Constructor Summary
ConstructorsConstructorDescriptionJVMCheckpointException(String message) Creates a JVMCheckpointException with the specified message and a default error code.JVMCheckpointException(String message, int errorCode) Creates a JVMCheckpointException with the specified message and error code.JVMCheckpointException(String message, int errorCode, Throwable causedBy) Creates a CheckpointException with the specified message and error code. -
Method Summary
Methods declared in class JVMCRIUException
getErrorCode, setErrorCodeModifier and TypeMethodDescriptionintReturns the error code.voidsetErrorCode(int errorCode) Sets the error code.Methods declared in class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JVMCheckpointException
Creates a JVMCheckpointException with the specified message and a default error code.- Parameters:
message- the message
-
JVMCheckpointException
Creates a JVMCheckpointException with the specified message and error code.- Parameters:
message- the messageerrorCode- the error code
-
JVMCheckpointException
-