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

Field Summary
protected  String revisionInformation
          revision information string, managed by our version control system.
 
Fields inherited from class com.ls.BaseRuntimeException
innerThrowable
 
Constructor Summary
CommandNotFoundException()
          Creates a CommandNotFoundException with no specified detail message.
CommandNotFoundException(String description)
          Creates a CommandNotFoundException with the specified detail message.
CommandNotFoundException(String description, Throwable throwable)
          Creates a CommandNotFoundException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseRuntimeException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

revisionInformation

protected String revisionInformation
revision information string, managed by our version control system.
Constructor Detail

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.