Package com.aspectran.shell.console
Class ShellConsoleClosedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspectran.shell.console.ShellConsoleClosedException
-
- All Implemented Interfaces:
java.io.Serializable
public class ShellConsoleClosedException extends java.lang.RuntimeException
This exception raised if a console is closed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ShellConsoleClosedException()
Simple constructor.ShellConsoleClosedException(java.lang.String msg)
Constructor to create exception with a message.ShellConsoleClosedException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.ShellConsoleClosedException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.
-
-
-
Constructor Detail
-
ShellConsoleClosedException
public ShellConsoleClosedException()
Simple constructor.
-
ShellConsoleClosedException
public ShellConsoleClosedException(java.lang.String msg)
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
ShellConsoleClosedException
public ShellConsoleClosedException(java.lang.Throwable cause)
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
ShellConsoleClosedException
public ShellConsoleClosedException(java.lang.String msg, java.lang.Throwable cause)
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the messagecause
- the real cause of the exception
-
-