1 2 3 4 5 6
public abstract aspect DummyAspect { public abstract pointcut traced(Object o); before (Object exc): traced(exc) { } }