* @return
*/
private int getAfterThrowingParamIndex(Method method){
AfterThrowing annotation = method.getAnnotation(AfterThrowing.class);
if (annotation != null){
String paramName = annotation.throwing().toString();
return getParamIndexByName(method, paramName);
}
return -1;
}