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

ExceptionAspect.java 312B

12345678910
  1. public aspect ExceptionAspect
  2. {
  3. pointcut exceptionThrower() :
  4. execution(public * ExceptionBugTest.*(..) throws Exception+);
  5. declare warning : exceptionThrower() : "throws both";
  6. declare error : execution(public * ExceptionBugTest.*(..) throws Exception) :
  7. "throws Exception";
  8. }