1 package ch.ethz.prose.jvmai.jikesrvm.advice_weaver; 2 3 4 9 public class ExceptionJoinPointImpl extends CodeJoinPointImpl { 10 11 14 public Throwable exception; 15 16 26 public void init(int id, Object tag, Object this0, Object [] args, Throwable exception) { 27 init(id, tag, this0, args); 28 this.exception = exception; 29 } 30 31 public Throwable getException() { 32 return exception; 33 } 34 35 } 36 | Popular Tags |