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