| EMMA Coverage Report (generated Thu Jan 20 11:39:44 EST 2011) |
|---|
| [all classes][com.hammurapi.store] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| StoreException.java | 100% (1/1) | 33% (1/3) | 31% (4/13) | 33% (2/6) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class StoreException | 100% (1/1) | 33% (1/3) | 31% (4/13) | 33% (2/6) |
| StoreException (String, Throwable): void | 0% (0/1) | 0% (0/5) | 0% (0/2) | |
| StoreException (Throwable): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| StoreException (String): void | 100% (1/1) | 100% (4/4) | 100% (2/2) |
| 1 | package com.hammurapi.store; |
| 2 | |
| 3 | /** |
| 4 | * Wrapper exception |
| 5 | * @author Pavel Vlasov |
| 6 | * |
| 7 | */ |
| 8 | public class StoreException extends RuntimeException { |
| 9 | |
| 10 | public StoreException(String message) { |
| 11 | super(message); |
| 12 | } |
| 13 | |
| 14 | public StoreException(Throwable cause) { |
| 15 | super(cause); |
| 16 | } |
| 17 | |
| 18 | public StoreException(String message, Throwable cause) { |
| 19 | super(message, cause); |
| 20 | } |
| 21 | |
| 22 | } |
| [all classes][com.hammurapi.store] |
| EMMA 2.0.5312 EclEmma Fix 2 (C) Vladimir Roubtsov |