Class GUIContextUnavailableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.core.runtimemanager.gui.GUIContextUnavailableException
-
- All Implemented Interfaces:
Serializable
public class GUIContextUnavailableException extends Exception
AGUIContextUnavailableException
indicates that a requested GUI-context has not been created due to an internal failure.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
guiManager
The name of the GUI-manager which was unable to create a requested GUI-context.
-
Constructor Summary
Constructors Constructor Description GUIContextUnavailableException(String guiManager, String message)
Creates a newGUIContextUnavailableException
to indicate that the corresponding GUI-manager was not been able to create a requested GUI-context.GUIContextUnavailableException(String guiManager, String message, Throwable cause)
Creates a newGUIContextUnavailableException
to indicate that the corresponding GUI-manager was not been able to create a requested GUI-context.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getGUIManager()
Gets the name of the GUI-manager which was unable to create a requested GUI-context.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
guiManager
protected final String guiManager
The name of the GUI-manager which was unable to create a requested GUI-context.
-
-
Constructor Detail
-
GUIContextUnavailableException
public GUIContextUnavailableException(String guiManager, String message)
Creates a newGUIContextUnavailableException
to indicate that the corresponding GUI-manager was not been able to create a requested GUI-context.- Parameters:
guiManager
- The name of the GUI-manager which was unable to create a requested GUI-context.message
- A message for a more detailed description of the problem.
-
GUIContextUnavailableException
public GUIContextUnavailableException(String guiManager, String message, Throwable cause)
Creates a newGUIContextUnavailableException
to indicate that the corresponding GUI-manager was not been able to create a requested GUI-context.- Parameters:
guiManager
- The name of the GUI-manager which was unable to create a requested GUI-context.message
- A message for a more detailed description of the problem.cause
- The cause of the exception.
-
-
Method Detail
-
getGUIManager
public String getGUIManager()
Gets the name of the GUI-manager which was unable to create a requested GUI-context.- Returns:
- The name of the GUI-manager which was unable to create a requested GUI-context.
-
-