baliuka 02/02/09 03:09:22
Added: simplestore/src/sample/org/apache/commons/simplestore/persistence
ObjectNotFound.java
Log:
Added sample
Revision Changes Path
1.1
jakarta-commons-sandbox/simplestore/src/sample/org/apache/commons/simplestore/persistence/ObjectNotFound.java
Index: ObjectNotFound.java
===================================================================
/*****************************************************************************
* Copyright (C) The Apache Software Foundation. All rights reserved. *
* ------------------------------------------------------------------------- *
* This software is published under the terms of the Apache Software License *
* version 1.1, a copy of which has been included with this distribution in *
* the LICENSE file. *
*****************************************************************************/
package org.apache.commons.simplestore.persistence;
/**
*
* @author Juozas Baliuka <a href="mailto:[EMAIL PROTECTED]">
* [EMAIL PROTECTED]</a>
* @version $Id: ObjectNotFound.java,v 1.1 2002/02/09 11:09:22 baliuka Exp $
*/
public class ObjectNotFound extends StorageException {
/**
* Creates a new instance of <code>ObjectNotFound</code> without detail message.
*/
public ObjectNotFound() {
}
/**
* Constructs an instance of <code>ObjectNotFound</code> with the specified
detail message.
* @param msg the detail message.
*/
public ObjectNotFound(String msg,Throwable th) {
super(msg,th);
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>