SubscriberExceptionContext.java 1.06 KB
package com.google.common.eventbus;

import com.google.common.base.Preconditions;
import java.lang.reflect.Method;

public class SubscriberExceptionContext
{
  private final EventBus a;
  private final Object b;
  private final Object c;
  private final Method d;
  
  SubscriberExceptionContext(EventBus paramEventBus, Object paramObject1, Object paramObject2, Method paramMethod)
  {
    this.a = ((EventBus)Preconditions.checkNotNull(paramEventBus));
    this.b = Preconditions.checkNotNull(paramObject1);
    this.c = Preconditions.checkNotNull(paramObject2);
    this.d = ((Method)Preconditions.checkNotNull(paramMethod));
  }
  
  public Object getEvent()
  {
    return this.b;
  }
  
  public EventBus getEventBus()
  {
    return this.a;
  }
  
  public Object getSubscriber()
  {
    return this.c;
  }
  
  public Method getSubscriberMethod()
  {
    return this.d;
  }
}


/* Location:              /home/merong/decompile/hackery-dex2jar.jar!/com/google/common/eventbus/SubscriberExceptionContext.class
 * Java compiler version: 6 (50.0)
 * JD-Core Version:       0.7.1
 */