java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cl.netswitch.lib.channel.FilterException
- All Implemented Interfaces:
Serializable
Signals that a filter error of some kind has occurred.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newFilterException
instance.FilterException
(String message) Constructs a newFilterException
instance with a message.FilterException
(String message, Throwable cause) Constructs a newFilterException
instance with a message and cause.FilterException
(Throwable cause) Constructs a newFilterException
instance with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FilterException
public FilterException()Constructs a newFilterException
instance. -
FilterException
Constructs a newFilterException
instance with a message.- Parameters:
message
- the detail message.
-
FilterException
Constructs a newFilterException
instance with a cause.- Parameters:
cause
- the cause of the exception.
-
FilterException
Constructs a newFilterException
instance with a message and cause.- Parameters:
message
- the detail message.cause
- the cause of the exception.
-