com.ls.cockpit
Class GUINotAvailableException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.ls.BaseRuntimeException
                          |
                          +--com.ls.cockpit.GUINotAvailableException
All Implemented Interfaces:
Serializable

public class GUINotAvailableException
extends BaseRuntimeException

This exception is used if it is impossible to start the GUI. This could be if for example the x-server is not installed correctly.

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
GUINotAvailableException()
          Creates a GUINotAvailableException with no specified detail message.
GUINotAvailableException(String description)
          Creates a GUINotAvailableException with the specified detail message.
GUINotAvailableException(String description, Throwable throwable)
          Creates a GUINotAvailableException 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

GUINotAvailableException

public GUINotAvailableException()
Creates a GUINotAvailableException with no specified detail message.

GUINotAvailableException

public GUINotAvailableException(String description)
Creates a GUINotAvailableException with the specified detail message.
Parameters:
description - The detail message.

GUINotAvailableException

public GUINotAvailableException(String description,
                                Throwable throwable)
Creates a GUINotAvailableException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.