| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| PersistenceException |
|
| 1.0;1 |
| 1 | package org.trails.persistence; |
|
| 2 | ||
| 3 | public class PersistenceException extends RuntimeException |
|
| 4 | { |
|
| 5 | ||
| 6 | public PersistenceException() |
|
| 7 | { |
|
| 8 | 4 | super(); |
| 9 | // TODO Auto-generated constructor stub |
|
| 10 | 4 | } |
| 11 | ||
| 12 | public PersistenceException(String message) |
|
| 13 | { |
|
| 14 | 4 | super(message); |
| 15 | // TODO Auto-generated constructor stub |
|
| 16 | 4 | } |
| 17 | ||
| 18 | public PersistenceException(String message, Throwable cause) |
|
| 19 | { |
|
| 20 | 0 | super(message, cause); |
| 21 | // TODO Auto-generated constructor stub |
|
| 22 | 0 | } |
| 23 | ||
| 24 | public PersistenceException(Throwable cause) |
|
| 25 | { |
|
| 26 | 0 | super(cause); |
| 27 | // TODO Auto-generated constructor stub |
|
| 28 | 0 | } |
| 29 | ||
| 30 | } |