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 aEventBusExceptionwith the specified message.EventBusException(String msg, Throwable e) Creates aEventBusExceptionwith 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 aEventBusExceptionwith the specified message.- Parameters:
msg- The message
-
EventBusException
Creates aEventBusExceptionwith the specified message and cause.- Parameters:
msg- The messagee- The cause
-