Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ODMGRuntimeException |
|
| 1.0;1 |
1 | package org.odmg; | |
2 | ||
3 | ||
4 | /** | |
5 | * This is the base class for all RuntimeExceptions thrown by an ODMG implementation. | |
6 | * @author David Jordan (as Java Editor of the Object Data Management Group) | |
7 | * @version ODMG 3.0 | |
8 | */ | |
9 | public class ODMGRuntimeException extends RuntimeException | |
10 | { | |
11 | public ODMGRuntimeException() | |
12 | { | |
13 | } | |
14 | ||
15 | public ODMGRuntimeException(String msg) | |
16 | { | |
17 | super(msg); | |
18 | } | |
19 | } | |
20 |