KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > jvmai > jikesrvm > stub_weaver > ExceptionJoinPointImpl


1 package ch.ethz.prose.jvmai.jikesrvm.stub_weaver;
2
3 /**
4  * Super class for exception throw/catch join points.
5  *
6  * @author Johann Gyger
7  */

8 public class ExceptionJoinPointImpl extends CodeJoinPointImpl {
9
10     /**
11      * Exception associated with this join point.
12      */

13     public Throwable JavaDoc exception;
14
15     public Throwable JavaDoc getException() {
16         return exception;
17     }
18
19 }
20
Popular Tags