選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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