/*
 * ObjectNotFoundException.java
 *
 *
 * Created on January 15, 2002, 9:32 AM
 * Last modified  on  $Date$  by  $Author$
 */

/**
 *
 * @author  Juozas Baliuka
 * @version $Revision$
 */
public class ObjectNotFoundException extends StoreException {

   
    
    /**
     * Creates new <code>ObjectNotFoundException</code> without detail message.
     */
    public ObjectNotFoundException() {
    }


    /**
     * Constructs an <code>ObjectNotFoundException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public ObjectNotFoundException(String msg) {
        super(msg);
    }
    /**
     * Constructs an <code>ObjectNotFoundException</code> with the specified detail message.
     * @param msg the detail message.
     * @param key unused key
     */
    public ObjectNotFoundException(String msg,Object key) {
        super(msg,key,null);
        
    }
    
    
    
}


