HandleCallbackException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.remoting; /** * This exception may be thrown if there is an error in dispatching * the callback to the intended handler. * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a> */ public class HandleCallbackException extends Exception { public HandleCallbackException(String message) { super(message); } public HandleCallbackException(String message, Throwable cause) { super(message, cause); } }
HandleCallbackException.java |