com.ls.cockpit
Class CommandNotFoundException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--com.ls.BaseRuntimeException
|
+--com.ls.cockpit.CommandNotFoundException
- All Implemented Interfaces:
- Serializable
- public class CommandNotFoundException
- extends BaseRuntimeException
This exception is used if a command is called which doesn't exists.
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.
CommandNotFoundException
public CommandNotFoundException()
- Creates a
CommandNotFoundException
with no specified detail message.
CommandNotFoundException
public CommandNotFoundException(String description)
- Creates a
CommandNotFoundException
with the specified detail message.
- Parameters:
description
- The detail message.
CommandNotFoundException
public CommandNotFoundException(String description,
Throwable throwable)
- Creates a
CommandNotFoundException
with the specified
detail message and nested exception.
- Parameters:
description
- The detail message.throwable
- The nested exception.