Package org.omegazero.common.eventbus
Class EventBusException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.omegazero.common.eventbus.EventBusException
- All Implemented Interfaces:
Serializable
An exception thrown when an error occurs during execution of an
EventBus
subscriber handler method.- Since:
- 2.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEventBusException
(String msg) Creates aEventBusException
with the specified message.EventBusException
(String msg, Throwable e) Creates aEventBusException
with the specified message and 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
-
EventBusException
Creates aEventBusException
with the specified message.- Parameters:
msg
- The message
-
EventBusException
Creates aEventBusException
with the specified message and cause.- Parameters:
msg
- The messagee
- The cause
-