Class ObjectStoreCommandNotSupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.gargoylesoftware.base.objectstore.ObjectStoreCommandNotSupportedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ObjectStoreCommandNotSupportedException extends java.lang.RuntimeException
Exception that will be thrown when a command is passed into an object store and that store does not understand the specified command.- Version:
- $Revision: 1.4 $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private ObjectStoreCommand
command_
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ObjectStoreCommandNotSupportedException(ObjectStoreCommand command)
Constructor for the ObjectStoreCommandNotSupportedException objectObjectStoreCommandNotSupportedException(java.lang.String message)
Deprecated.Use the constructor that takes a command
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectStoreCommand
getCommand()
Return the command or null if the command wasn't set
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
command_
private final ObjectStoreCommand command_
-
-
Constructor Detail
-
ObjectStoreCommandNotSupportedException
public ObjectStoreCommandNotSupportedException(java.lang.String message)
Deprecated.Use the constructor that takes a commandInstantiate one.- Parameters:
message
- The message
-
ObjectStoreCommandNotSupportedException
public ObjectStoreCommandNotSupportedException(ObjectStoreCommand command)
Constructor for the ObjectStoreCommandNotSupportedException object- Parameters:
command
- The command that was not supported
-
-
Method Detail
-
getCommand
public ObjectStoreCommand getCommand()
Return the command or null if the command wasn't set- Returns:
- The command value
-
-