001 package com.hammurapi.eventbus;
002
003 /**
004 * This exception is thrown in the case of problems dispatching event
005 * to handlers.
006 * @author Pavel Vlasov
007 *
008 */
009 public class EventDispatchException extends EventBusException {
010
011 public EventDispatchException(String message) {
012 super(message);
013 }
014
015 public EventDispatchException(Throwable cause) {
016 super(cause);
017 }
018
019 public EventDispatchException(String message, Throwable cause) {
020 super(message, cause);
021 }
022
023 // TODO Derivation tree.
024
025 }