blob: b8b9a0286d127405b729f2b84dce7ac1ba2dfb61 [file] [log] [blame]
package test.rmi.exceptionhandling;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface Thrower extends Remote {
void throwAppException() throws RemoteException, MyAppException;
void throwRuntimeException() throws RemoteException;
}