1 package org.odmg; 2 3 4 5 /** 6 7 * This exception is thrown when an implementation does not support an operation. 8 9 * @author David Jordan (as Java Editor of the Object Data Management Group) 10 11 * @version ODMG 3.0 12 13 */ 14 15 16 17 public class NotImplementedException extends ODMGRuntimeException 18 19 { 20 21 /** 22 23 * Construct an instance of the exception. 24 25 */ 26 27 public NotImplementedException() 28 29 { 30 31 super(); 32 33 } 34 35 36 37 /** 38 39 * Construct an instance of the exception. 40 41 * @param msg A string providing a description of the exception. 42 43 */ 44 45 public NotImplementedException(String msg) 46 47 { 48 49 super(msg); 50 51 } 52 53 } 54