Hi All,
Why this advice has not been applied? Whats wrong with it?
pointcut clientCreate() : call(* javax.ejb.EJBHome+.create(..));
Object around(Object p, Object homeObject) throws RemoteException :
clientCreate() && args(p) && target(homeObject) {
// invoke method
try {
// Some invoking code
}catch ( Exception e){
throw new RemoteException();
}
}
Thanx.
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users