Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AspectDeclareSoft.aj 183B

123456789
  1. public aspect AspectDeclareSoft {
  2. declare soft: MyException: execution(* main(..));
  3. declare soft: Exception+: execution(* main(..));
  4. }
  5. class MyException extends Exception {}