Package com.google.common.eventbus
Class SubscriberExceptionContext
- java.lang.Object
 - 
- com.google.common.eventbus.SubscriberExceptionContext
 
 
- 
public class SubscriberExceptionContext extends Object
Context for an exception thrown by a subscriber.- Since:
 - 16.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetEvent()EventBusgetEventBus()ObjectgetSubscriber()MethodgetSubscriberMethod() 
 - 
 
- 
- 
Method Detail
- 
getEventBus
public EventBus getEventBus()
- Returns:
 - The 
EventBusthat handled the event and the subscriber. Useful for broadcasting a new event based on the error. 
 
- 
getSubscriber
public Object getSubscriber()
- Returns:
 - The object context that the subscriber was called on.
 
 
- 
getSubscriberMethod
public Method getSubscriberMethod()
- Returns:
 - The subscribed method that threw the exception.
 
 
 - 
 
 -