package org.tessell.dispatch.client.events;
import org.tessell.GenEvent;
import org.tessell.Param;
import org.tessell.dispatch.shared.Action;
@GenEvent
public class DispatchUnhandledFailureEventSpec {
@Param(1)
Action<?> action;
@Param(2)
Throwable throwable;
@Param(3)
String message;
}