| EMMA Coverage Report (generated Thu Jan 20 11:39:44 EST 2011) |
|---|
| [all classes][com.hammurapi.eventbus] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| EventDispatchException.java | 100% (1/1) | 33% (1/3) | 38% (5/13) | 33% (2/6) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class EventDispatchException | 100% (1/1) | 33% (1/3) | 38% (5/13) | 33% (2/6) |
| EventDispatchException (String): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| EventDispatchException (Throwable): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| EventDispatchException (String, Throwable): void | 100% (1/1) | 100% (5/5) | 100% (2/2) |
| 1 | package com.hammurapi.eventbus; |
| 2 | |
| 3 | /** |
| 4 | * This exception is thrown in the case of problems dispatching event |
| 5 | * to handlers. |
| 6 | * @author Pavel Vlasov |
| 7 | * |
| 8 | */ |
| 9 | public class EventDispatchException extends EventBusException { |
| 10 | |
| 11 | public EventDispatchException(String message) { |
| 12 | super(message); |
| 13 | } |
| 14 | |
| 15 | public EventDispatchException(Throwable cause) { |
| 16 | super(cause); |
| 17 | } |
| 18 | |
| 19 | public EventDispatchException(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 |