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