1 package ch.ethz.prose.jvmai.jikesrvm.stub_weaver;2 3 /**4 * Super class for exception throw/catch join points. 5 * 6 * @author Johann Gyger7 */8 public class ExceptionJoinPointImpl extends CodeJoinPointImpl {9 10 /**11 * Exception associated with this join point.12 */13 public Throwable exception;14 15 public Throwable getException() {16 return exception;17 }18 19 }20