| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| EditorException |
|
| 1.0;1 |
| 1 | package org.webslinger.modules.edit; | |
| 2 | ||
| 3 | import java.io.IOException; | |
| 4 | ||
| 5 | public class EditorException extends IOException { | |
| 6 | public EditorException(String message) { | |
| 7 | 0 | super(message); |
| 8 | 0 | } |
| 9 | ||
| 10 | public EditorException() { | |
| 11 | 0 | super(); |
| 12 | 0 | } |
| 13 | ||
| 14 | public EditorException(String message, Throwable t) { | |
| 15 | 0 | super(message); |
| 16 | 0 | initCause(t); |
| 17 | 0 | } |
| 18 | ||
| 19 | public EditorException(Throwable t) { | |
| 20 | 0 | super(); |
| 21 | 0 | initCause(t); |
| 22 | 0 | } |
| 23 | } | |
| 24 |