Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }