Commit 9d88281a authored by Quxl's avatar Quxl

x

parent 0bea1e8f
package com.egolm.sso.config;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class ExceptionAspect {
@AfterThrowing(throwing="ex", pointcut="execution(public * com.egolm.sso.services.*.*.execute(..))")
public void afterThrowing(Throwable ex) {
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment