Package com.sas.services.events.broker
Class InvalidEventTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sas.services.events.broker.InvalidEventTypeException
- All Implemented Interfaces:
Serializable
public class InvalidEventTypeException
extends Exception
An InvalidEventTypeException is thrown when an unrecognized event type
is specified.
Usage
This type of exception can occur when a dynamic listener application tries to register an event with an invalid type specified.- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an exception to indicate that an invalid event type has been encountered.InvalidEventTypeException(String msg) Constructs an exception to indicate that an invalid event type has been encountered using the specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
InvalidEventTypeException
public InvalidEventTypeException()Constructs an exception to indicate that an invalid event type has been encountered. -
InvalidEventTypeException
public InvalidEventTypeException(String msg) Constructs an exception to indicate that an invalid event type has been encountered using the specified message.- Parameters:
msg- Exception message
-