aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/throwsSignature/ExceptionAspect.java
blob: db15fcb6b2573f6b6f4469316471c21ce7a4260c (plain)
1
2
3
4
5
6
7
8
9
10
public aspect ExceptionAspect
{
    pointcut exceptionThrower() :
        execution(public * ExceptionBugTest.*(..) throws Exception+);

    declare warning : exceptionThrower() : "throws both";
    
    declare error : execution(public * ExceptionBugTest.*(..) throws Exception) : 
        "throws Exception";
}