Here you can find the source of process(ProceedingJoinPoint point, Object[] args)
public static Object process(ProceedingJoinPoint point, Object[] args) throws Exception
//package com.java2s; import org.aspectj.lang.ProceedingJoinPoint; public class Main { public static Object process(ProceedingJoinPoint point, Object[] args) throws Exception { try {//ww w . ja v a 2 s . c o m return point.proceed(args); } catch (Throwable e) { throw new Exception(e); } } public static Object process(ProceedingJoinPoint point) throws Exception { try { return point.proceed(); } catch (Throwable e) { throw new Exception(e); } } }