| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ServiceException |
|
| 1.0;1 |
| 1 | package com.aragost.javahg.internals; | |
| 2 | ||
| 3 | /** | |
| 4 | * This exception is thrown if an error occurs during load of a service | |
| 5 | * with the {@link ServiceLoader}. | |
| 6 | * | |
| 7 | * @author Sebastian Sdorra | |
| 8 | */ | |
| 9 | public final class ServiceException extends Exception | |
| 10 | { | |
| 11 | private static final long serialVersionUID = 4453421798347799570L; | |
| 12 | ||
| 13 | 0 | public ServiceException(){ |
| 14 | 0 | } |
| 15 | ||
| 16 | public ServiceException(String message){ | |
| 17 | 0 | super(message); |
| 18 | 0 | } |
| 19 | ||
| 20 | public ServiceException(String message, Throwable cause){ | |
| 21 | 0 | super(message, cause); |
| 22 | 0 | } |
| 23 | ||
| 24 | public ServiceException(Throwable cause){ | |
| 25 | 0 | super(cause); |
| 26 | 0 | } |
| 27 | ||
| 28 | } |