1 27 package ch.ethz.jvmai; 28 29 import java.util.*; 31 import java.io.*; 32 import ch.ethz.jvmai.JoinPoint; 33 34 41 public 42 interface ExceptionJoinPoint extends CodeJoinPoint { 43 44 public static String KIND = JoinPointKinds.KIND_EXCEPTION_THROW_ARGS_JP; 45 46 49 public Throwable getException(); 50 51 53 public boolean hasHandler(); 54 55 58 public Class handlerClass(); 59 60 61 } 62 63 64 | Popular Tags |