KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > odmg > ODMGRuntimeException


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 JavaDoc
10 {
11     public ODMGRuntimeException()
12     {
13     }
14
15     public ODMGRuntimeException(String JavaDoc msg)
16     {
17         super(msg);
18     }
19 }
20
21
Popular Tags