KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > NotFoundException


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 Duchesne
12  * <dl>
13  * <dt><b>Copyright:</b><dd>Copyright &#169; 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 the
15  * <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 arg0
22    * @param arg1
23    */

24   public NotFoundException(String JavaDoc arg0, Throwable JavaDoc arg1) {
25     super(arg0, arg1);
26   }
27
28   /**
29    * Constructor for ServiceNotFoundException.
30    * @param arg0
31    */

32   public NotFoundException(String JavaDoc arg0) {
33     super(arg0);
34   }
35 }
36
Popular Tags