001    package org.odmg;
002    
003    
004    
005    /**
006    
007     * This exception is thrown when accessing an object that was deleted.
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 ObjectDeletedException extends ODMGRuntimeException
018    
019    {
020    
021    
022    
023        /**
024    
025         * Construct an instance of the exception.
026    
027         */
028    
029        public ObjectDeletedException()
030    
031        {
032    
033            super();
034    
035        }
036    
037    
038    
039        /**
040    
041         * Construct an instance of the exception.
042    
043         * @param   msg     A string providing a description of the exception.
044    
045         */
046    
047        public ObjectDeletedException(String msg)
048    
049        {
050    
051            super(msg);
052    
053        }
054    
055    }
056