1 2 3 4 5 6 7 8
package primary; public aspect BetaA { pointcut handlers(): handler(Throwable); before(): handlers() { System.err.println("xxx"); } }