blob: 63c1cb8a3fc61ec839520d670e7c38e0bbef6884 [file] [log] [blame]
package test.rmi.exceptionhandling;
import java.rmi.RemoteException;
public class ThrowerImpl implements Thrower {
@Override
public void throwAppException() throws RemoteException, MyAppException {
throw new MyAppException();
}
@Override
public void throwRuntimeException() throws RemoteException {
throw new MyRuntimeException();
}
}