Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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