You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestSoftening.java 386B

1234567891011121314151617181920
  1. //PR46750
  2. import java.rmi.RemoteException;
  3. public class TestSoftening {
  4. public static void main(String[] args) {
  5. TestSoftening test = new TestSoftening();
  6. test.perform();
  7. }
  8. public void perform() throws RemoteException {
  9. throw new RemoteException();
  10. }
  11. static aspect SofteningTestAspect {
  12. declare soft : RemoteException : call(void TestSoftening.perform());
  13. }
  14. }