Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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