- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.openj9.criu.JVMCRIUException
-
- org.eclipse.openj9.criu.SystemCheckpointException
-
- All Implemented Interfaces:
Serializable
public final class SystemCheckpointException extends JVMCRIUException
An exception representing a failed system operation before checkpoint.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields declared in class org.eclipse.openj9.criu.JVMCRIUException
errorCode
-
-
Constructor Summary
Constructors Constructor Description SystemCheckpointException(String message)
Creates a SystemCheckpointException with the specified message and a default error code.SystemCheckpointException(String message, int errorCode)
Creates a SystemCheckpointException with the specified message and error code.SystemCheckpointException(String message, int errorCode, Throwable causedBy)
Creates a SystemCheckpointException with the specified message, error code and throwable that caused the exception.
-
Method Summary
-
Methods declared in class org.eclipse.openj9.criu.JVMCRIUException
getErrorCode, setErrorCode
-
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SystemCheckpointException
public SystemCheckpointException(String message)
Creates a SystemCheckpointException with the specified message and a default error code.- Parameters:
message
- the message
-
SystemCheckpointException
public SystemCheckpointException(String message, int errorCode)
Creates a SystemCheckpointException with the specified message and error code.- Parameters:
message
- the messageerrorCode
- the error code
-
SystemCheckpointException
public SystemCheckpointException(String message, int errorCode, Throwable causedBy)
Creates a SystemCheckpointException with the specified message, error code and throwable that caused the exception.- Parameters:
message
- the messageerrorCode
- the error codecausedBy
- throwable that caused the exception
-
-