com.ls.cockpit
Class CommandNotAvailableException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--com.ls.BaseRuntimeException
|
+--com.ls.cockpit.CommandNotAvailableException
- All Implemented Interfaces:
- Serializable
- public class CommandNotAvailableException
- extends BaseRuntimeException
This exception is used if a command is called which is not available at the
moment. This could be depending on dependencies aren't complied.
It is only used to make it possible to insert special methods to handle exceptions.
- Version:
- $Revision: 1.2 $
- Author:
- Last modified by $Author: ASchneider $
- See Also:
- Serialized Form
revisionInformation
protected String revisionInformation
- revision information string, managed by our version control system.
CommandNotAvailableException
public CommandNotAvailableException()
- Creates a
CommandNotAvailableException
with no specified detail message.
CommandNotAvailableException
public CommandNotAvailableException(String description)
- Creates a
CommandNotAvailableException
with the specified detail message.
- Parameters:
description
- The detail message.
CommandNotAvailableException
public CommandNotAvailableException(String description,
Throwable throwable)
- Creates a
CommandNotAvailableException
with the specified
detail message and nested exception.
- Parameters:
description
- The detail message.throwable
- The nested exception.