| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ModelException |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on Aug 3, 2007 by wyatt | |
| 3 | */ | |
| 4 | package org.homeunix.thecave.buddi.plugin.api.exception; | |
| 5 | ||
| 6 | ||
| 7 | /** | |
| 8 | * The operation which was attempted on the model did not succeed, and is to be cancelled. | |
| 9 | * | |
| 10 | * @author wyatt | |
| 11 | * | |
| 12 | */ | |
| 13 | public class ModelException extends Exception { | |
| 14 | public static final long serialVersionUID = 0; | |
| 15 | ||
| 16 | public ModelException() { | |
| 17 | 0 | super(); |
| 18 | 0 | } |
| 19 | public ModelException(String message) { | |
| 20 | 44 | super(message); |
| 21 | 44 | } |
| 22 | public ModelException(Throwable cause) { | |
| 23 | 0 | super(cause); |
| 24 | 0 | } |
| 25 | public ModelException(String message, Throwable cause) { | |
| 26 | 0 | super(message, cause); |
| 27 | 0 | } |
| 28 | } |