| EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010) |
|---|
| [all classes][dmg.cells.nucleus] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| SerializationException.java | 0% (0/1) | 0% (0/2) | 0% (0/9) | 0% (0/4) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class SerializationException | 0% (0/1) | 0% (0/2) | 0% (0/9) | 0% (0/4) |
| SerializationException (String): void | 0% (0/1) | 0% (0/4) | 0% (0/2) | |
| SerializationException (String, Throwable): void | 0% (0/1) | 0% (0/5) | 0% (0/2) |
| 1 | package dmg.cells.nucleus; |
| 2 | |
| 3 | /** |
| 4 | * Thrown when a serious error occurred during serialization or |
| 5 | * de-serialization. Usually indicates that an object is not |
| 6 | * serializable or deserialized. |
| 7 | */ |
| 8 | public class SerializationException extends RuntimeException |
| 9 | { |
| 10 | static final long serialVersionUID = -8869521471350239459L; |
| 11 | |
| 12 | public SerializationException(String str) |
| 13 | { |
| 14 | super(str); |
| 15 | } |
| 16 | |
| 17 | public SerializationException(String str, Throwable cause) |
| 18 | { |
| 19 | super(str, cause); |
| 20 | } |
| 21 | } |
| [all classes][dmg.cells.nucleus] |
| EMMA 2.0.5312 (C) Vladimir Roubtsov |