KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > HandleCallbackException


1 /*
2 * JBoss, the OpenSource J2EE webOS
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */

7 package org.jboss.remoting;
8
9 /**
10  * This exception may be thrown if there is an error in dispatching
11  * the callback to the intended handler.
12  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
13  */

14 public class HandleCallbackException extends Exception JavaDoc
15 {
16     public HandleCallbackException(String JavaDoc message)
17     {
18         super(message);
19     }
20
21     public HandleCallbackException(String JavaDoc message, Throwable JavaDoc cause)
22     {
23         super(message, cause);
24     }
25 }
26
Popular Tags