Package net.sf.basedb.core.signal
Class UnsupportedSignalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.basedb.core.BaseException
-
- net.sf.basedb.core.signal.SignalException
-
- net.sf.basedb.core.signal.UnsupportedSignalException
-
- All Implemented Interfaces:
Serializable
public class UnsupportedSignalException extends SignalException
This exception is thrown by signal handlers and others that doesn't support a given signal.- Version:
- 2.6
- Author:
- nicklas
- See Also:
- Serialized Form
- Last modified
- $Date: 2008-09-11 22:09:17 +0200 (to, 11 sep 2008) $
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
private Signal
signal
-
Constructor Summary
Constructors Constructor Description UnsupportedSignalException(Signal signal)
Create a new UnsupportedSignalException.UnsupportedSignalException(Signal signal, String msg)
Create a new UnsupportedSignalException with a custom message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Signal
getSignal()
Get the signal that is not supported.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
signal
private Signal signal
-
-
Constructor Detail
-
UnsupportedSignalException
public UnsupportedSignalException(Signal signal)
Create a new UnsupportedSignalException.- Parameters:
signal
- The signal that is not supported
-
-
Method Detail
-
getSignal
public Signal getSignal()
Get the signal that is not supported.- Returns:
- A signal object
-
-