Aspect.java

package org.aspectj.weaver.testcode;

public class Aspect {

	public static void ignoreMe() {
	}

	public static void before_method_call() {
		System.out.println("before");
	}

	public static void afterReturning_method_call() {
		System.out.println("afterReturning");
	}

	public static void afterThrowing_method_execution(Throwable t) {
		System.out.println("afterThrowing " + t);
		t.printStackTrace();
	}

}