Class FilterException
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
ConstructorsConstructorDescriptionConstructs a newFilterExceptioninstance.FilterException(String message) Constructs a newFilterExceptioninstance with a message.FilterException(String message, Throwable cause) Constructs a newFilterExceptioninstance with a message and cause.FilterException(Throwable cause) Constructs a newFilterExceptioninstance with a cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FilterException
public FilterException()Constructs a newFilterExceptioninstance. -
FilterException
Constructs a newFilterExceptioninstance with a message.- Parameters:
message- the detail message.
-
FilterException
Constructs a newFilterExceptioninstance with a cause.- Parameters:
cause- the cause of the exception.
-
FilterException
-