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.

SofteningTooMuch.java 281B

123456789101112131415
  1. // pr 48522
  2. public class SofteningTooMuch {
  3. public static void main(String args[]) {
  4. throw new Exception("should be a compiler error here");
  5. }
  6. }
  7. class FooException extends Exception {}
  8. aspect ExcPolicy {
  9. declare soft: FooException: execution(* SofteningTooMuch.*(..));
  10. }