You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ba...@apache.org on 2002/02/09 12:09:22 UTC

cvs commit: jakarta-commons-sandbox/simplestore/src/sample/org/apache/commons/simplestore/persistence ObjectNotFound.java

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:baliuka@mwm.lt">
   *      baliuka@mwm.lt</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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>