| EMMA Coverage Report (generated Thu Jan 20 11:39:44 EST 2011) |
|---|
| [all classes][com.hammurapi.eventbus] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| DispatchNetworkException.java | 0% (0/1) | 0% (0/3) | 0% (0/13) | 0% (0/6) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class DispatchNetworkException | 0% (0/1) | 0% (0/3) | 0% (0/13) | 0% (0/6) |
| DispatchNetworkException (String): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| DispatchNetworkException (String, Throwable): void | 0% (0/1) | 0% (0/5) | 0% (0/2) | |
| DispatchNetworkException (Throwable): void | 0% (0/1) | 0% (0/4) | 0% (0/2) |
| 1 | package com.hammurapi.eventbus; |
| 2 | |
| 3 | /** |
| 4 | * This exception is thrown in the case of problems with constructing |
| 5 | * event dispatch network. |
| 6 | * @author Pavel Vlasov |
| 7 | * |
| 8 | */ |
| 9 | public class DispatchNetworkException extends EventBusException { |
| 10 | |
| 11 | public DispatchNetworkException(String message) { |
| 12 | super(message); |
| 13 | } |
| 14 | |
| 15 | public DispatchNetworkException(Throwable cause) { |
| 16 | super(cause); |
| 17 | } |
| 18 | |
| 19 | public DispatchNetworkException(String message, Throwable cause) { |
| 20 | super(message, cause); |
| 21 | } |
| 22 | |
| 23 | // TODO Derivation tree. |
| 24 | |
| 25 | } |
| [all classes][com.hammurapi.eventbus] |
| EMMA 2.0.5312 EclEmma Fix 2 (C) Vladimir Roubtsov |