KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > net > nio > acceptor > HandlerException


1 package org.sapia.ubik.net.nio.acceptor;
2
3 import org.sapia.ubik.net.NestedIOException;
4
5 /**
6  * @author Yanick Duchesne
7  *
8  * <dl>
9  * <dt><b>Copyright: </b>
10  * <dd>Copyright &#169; 2002-2005 <a HREF="http://www.sapia-oss.org">Sapia Open
11  * Source Software </a>. All Rights Reserved.</dd>
12  * </dt>
13  * <dt><b>License: </b>
14  * <dd>Read the license.txt file of the jar or visit the <a
15  * HREF="http://www.sapia-oss.org/license.html">license page </a> at the Sapia
16  * OSS web site</dd>
17  * </dt>
18  * </dl>
19  */

20 public class HandlerException extends NestedIOException {
21   
22   static final long serialVersionUID = 1L;
23
24   /**
25    * @param aMessage
26    */

27   public HandlerException(String JavaDoc aMessage) {
28     super(aMessage);
29   }
30
31   /**
32    * @param aMessage
33    * @param aSourceError
34    */

35   public HandlerException(String JavaDoc aMessage, Throwable JavaDoc aSourceError) {
36     super(aMessage, aSourceError);
37   }
38 }
39
Popular Tags