1 package org.sapia.soto;2 3 import org.sapia.util.CompositeException;4 5 6 /**7 * Thrown when an object is not found.8 *9 * @see org.sapia.soto.SotoContainer#lookup(String)10 *11 * @author Yanick Duchesne12 * <dl>13 * <dt><b>Copyright:</b><dd>Copyright © 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>14 * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the15 * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>16 * </dl>17 */18 public class NotFoundException extends CompositeException {19 /**20 * Constructor for ServiceNotFoundException.21 * @param arg022 * @param arg123 */24 public NotFoundException(String arg0, Throwable arg1) {25 super(arg0, arg1);26 }27 28 /**29 * Constructor for ServiceNotFoundException.30 * @param arg031 */32 public NotFoundException(String arg0) {33 super(arg0);34 }35 }36