blob: 80262d0c1959b81d1a9156a22663e858557d530d [file] [log] [blame]
package p;
import java.rmi.RemoteException;
public class TestSoftening {
public static void main(String[] args) {
TestSoftening test = new TestSoftening();
test.perform();
}
public void perform() throws RemoteException {
throw new RemoteException();
}
}
aspect SofteningTestAspect {
declare soft : RemoteException : call(void TestSoftening.perform());
}