In my project I'm using log4j to log errors and many frameworks: AOP, spring etc.
What does it mean when I have in my stacktrace that calling was in 1st line, e.g:
com.foo.bar.MyException: Error
at com.foo.bar.MyClass.handleException(MyClass.java:92)
at com.foo.bar.MyClass.myMethod(MyClass.java:76)
at com.foo.bar.MyClass.myMethod(MyClass.java:1) // <- here ???
...
In 1st line my Class is comment and everything is compiled correctly
MyClass.java:
/* Copyright 2011 */
package com.foo.bar;
import ...
public class MyClass implements MyInterface {...