001 package org.odmg;
002
003
004 /**
005 * This is the base class for all RuntimeExceptions thrown by an ODMG implementation.
006 * @author David Jordan (as Java Editor of the Object Data Management Group)
007 * @version ODMG 3.0
008 */
009 public class ODMGRuntimeException extends RuntimeException
010 {
011 public ODMGRuntimeException()
012 {
013 }
014
015 public ODMGRuntimeException(String msg)
016 {
017 super(msg);
018 }
019 }
020