Package org.eclipse.core.commands
Class SerializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.eclipse.core.commands.common.CommandException
org.eclipse.core.commands.SerializationException
- All Implemented Interfaces:
Serializable
Signals that an exception occured while serializing a
ParameterizedCommand
to a string or deserializing a String to a
ParameterizedCommand
.
This class is not intended to be extended by clients.
- Since:
- 3.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSerializationException
(String message) Creates a new instance of this class with the specified detail message.SerializationException
(String message, Throwable cause) Creates a new instance of this class with the specified detail message and 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
-
SerializationException
Creates a new instance of this class with the specified detail message.- Parameters:
message
- the detail message; may benull
.
-
SerializationException
Creates a new instance of this class with the specified detail message and cause.- Parameters:
message
- the detail message; may benull
.cause
- the cause; may benull
.
-