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