001 package org.odmg; 002 003 004 005 /** 006 007 * This exception is thrown when an implementation does not support an operation. 008 009 * @author David Jordan (as Java Editor of the Object Data Management Group) 010 011 * @version ODMG 3.0 012 013 */ 014 015 016 017 public class NotImplementedException extends ODMGRuntimeException 018 019 { 020 021 /** 022 023 * Construct an instance of the exception. 024 025 */ 026 027 public NotImplementedException() 028 029 { 030 031 super(); 032 033 } 034 035 036 037 /** 038 039 * Construct an instance of the exception. 040 041 * @param msg A string providing a description of the exception. 042 043 */ 044 045 public NotImplementedException(String msg) 046 047 { 048 049 super(msg); 050 051 } 052 053 } 054