1 45 package org.exolab.jms.net; 46 47 import java.rmi.RemoteException ; 48 49 import org.exolab.jms.net.proxy.RemoteInvocationException; 50 51 52 58 public interface ExceptionService { 59 60 65 void throwThrowable() throws Throwable ; 66 67 72 void throwException() throws Exception ; 73 74 79 void throwError() throws Error ; 80 81 86 void throwUndeclaredError(); 87 88 95 void throwUndeclaredError2() throws RemoteException ; 96 97 102 void throwRuntimeException() throws RuntimeException ; 103 104 109 void throwUndeclaredRuntimeException(); 110 111 118 void throwUndeclaredRuntimeException2() throws RemoteException ; 119 120 125 void throwUndeclaredRemoteInvocationException(); 126 127 132 void throwRemoteException() throws RemoteException ; 133 134 } 135 | Popular Tags |