1 package org.jboss.remoting.callback; 2 3 /** 4 * This exception may be thrown if there is an error in dispatching 5 * the callback to the intended handler. 6 * 7 * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a> 8 */ 9 public class HandleCallbackException extends Exception 10 { 11 public HandleCallbackException(String message) 12 { 13 super(message); 14 } 15 16 public HandleCallbackException(String message, Throwable cause) 17 { 18 super(message, cause); 19 } 20 } 21