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.

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