Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] (very newbie question) Logging exceptions

Thanks again Wes. I will study the appendices first!

Kees

On 3/15/06, Wes Isberg <wes@xxxxxxxxxxxxxx> wrote:
> Hi -
>
> Glad things are (mostly) working.
>
> > What am I missing?
> >
> >               File file = new File("c:/tmp/non-existen.txt");
>
>
> This is a constructor-call, not method-execution, and the
> method-execution join point is not in the control of ajc
> since you're not weaving or compiling the File class.
> The Semantics appendix explains join points/pointcuts well,
> and the implementation appendix explains what ajc needs
> in order to implement each join point.
>
> Wes
>
>


Back to the top