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:
java.io.Serializable
public final class SerializationException extends CommandException
Signals that an exception occured while serializing aParameterizedCommandto a string or deserializing a String to aParameterizedCommand.This class is not intended to be extended by clients.
- Since:
- 3.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializationException(java.lang.String message)Creates a new instance of this class with the specified detail message.SerializationException(java.lang.String message, java.lang.Throwable cause)Creates a new instance of this class with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class org.eclipse.core.commands.common.CommandException
getCause
-
-
-
-
Constructor Detail
-
SerializationException
public SerializationException(java.lang.String message)
Creates a new instance of this class with the specified detail message.- Parameters:
message- the detail message; may benull.
-
SerializationException
public SerializationException(java.lang.String message, java.lang.Throwable cause)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.
-
-