| EMMA Coverage Report (generated Thu Jan 20 11:39:44 EST 2011) |
|---|
| [all classes][com.hammurapi.convert] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| DecorationException.java | 0% (0/1) | 0% (0/4) | 0% (0/16) | 0% (0/8) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class DecorationException | 0% (0/1) | 0% (0/4) | 0% (0/16) | 0% (0/8) |
| DecorationException (): void | 0% (0/1) | 0% (0/3) | 0% (0/2) | |
| DecorationException (String): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| DecorationException (String, Throwable): void | 0% (0/1) | 0% (0/5) | 0% (0/2) | |
| DecorationException (Throwable): void | 0% (0/1) | 0% (0/4) | 0% (0/2) |
| 1 | /* |
| 2 | @license.text@ |
| 3 | */ |
| 4 | package com.hammurapi.convert; |
| 5 | |
| 6 | /** |
| 7 | * @author Pavel Vlasov |
| 8 | * @version $Revision: 1.1 $ |
| 9 | */ |
| 10 | public class DecorationException extends RuntimeException { |
| 11 | |
| 12 | /** |
| 13 | * |
| 14 | */ |
| 15 | public DecorationException() { |
| 16 | super(); |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * @param message |
| 21 | */ |
| 22 | public DecorationException(String message) { |
| 23 | super(message); |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * @param cause |
| 28 | */ |
| 29 | public DecorationException(Throwable cause) { |
| 30 | super(cause); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * @param message |
| 35 | * @param cause |
| 36 | */ |
| 37 | public DecorationException(String message, Throwable cause) { |
| 38 | super(message, cause); |
| 39 | } |
| 40 | |
| 41 | } |
| [all classes][com.hammurapi.convert] |
| EMMA 2.0.5312 EclEmma Fix 2 (C) Vladimir Roubtsov |