01: package ch.ethz.prose.jvmai.jikesrvm.stub_weaver;
02:
03: /**
04: * Super class for exception throw/catch join points.
05: *
06: * @author Johann Gyger
07: */
08: public class ExceptionJoinPointImpl extends CodeJoinPointImpl {
09:
10: /**
11: * Exception associated with this join point.
12: */
13: public Throwable exception;
14:
15: public Throwable getException() {
16: return exception;
17: }
18:
19: }
|