Source code: org/odmg/ODMGRuntimeException.java
1 package org.odmg;
2
3 /**
4 * This is the base class for all RuntimeExceptions thrown by an ODMG implementation.
5 * @author David Jordan (as Java Editor of the Object Data Management Group)
6 * @version ODMG 3.0
7 */
8
9 public class ODMGRuntimeException extends RuntimeException
10 {
11
12 /**
13 * Construct an instance of the exception.
14 */
15 public ODMGRuntimeException()
16 {
17 super();
18 }
19
20 /**
21 * Construct an instance of the exception with the specified message.
22 * @param msg The message associated with the exception.
23 */
24 public ODMGRuntimeException(String msg)
25 {
26 super(msg);
27 }
28 }