Source code: org/odmg/ODMGException.java
1 package org.odmg;
2
3 /**
4 * This is the base class for all exceptions 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 ODMGException extends Exception
10 {
11 /**
12 * Construct an <code>ODMGException</code> object without an error message.
13 */
14 public ODMGException()
15 {
16 super();
17 }
18
19 /**
20 * Construct an <code>ODMGException</code> object with an error message.
21 * @param msg The error message associated with this exception.
22 */
23
24 public ODMGException(String msg)
25 {
26 super(msg);
27 }
28 }