blob: fb9d6addb66818efce23f1be67955193cab68ba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//package com.foliofn.infra.logging;
import java.lang.reflect.Field;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect public class Foo5 {
public void m() {
new RuntimeException("hello");
}
public static void main(String[] argv) {
}
@Pointcut("call(Throwable+.new(String, ..)) && this(caller) && args(exceptionMessage) && if()")
public static boolean exceptionInitializer(Object caller, String exceptionMessage) {
return true;
}
@Around("exceptionInitializer(caller, exceptionMessage)")
public Object annotateException(ProceedingJoinPoint jp, Object caller, String exceptionMessage) {
return null;
}
}
|