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 {...
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I've seen this phenomenon during debugging as well - stepping into a method sometimes jumps to the first line of the declared class first, then the actual method. Without being able to give you a reference, I think it's something to do with dispatch of overridden methods in some situations (covariant return types being at least one). In these cases, the compiler needs to insert a synthetic bridge method which gets called before the "real" method, and my guess is that this method gets an effective line number of 1.

In any case, I don't think it's something for you to worry about - as you can see, your own myMethod implementation gets called successfully on line 76 immediately afterwards.

link|improve this answer
feedback

Means your package declaration is wrong.

You could also have generated this if you use default packages (which is a very very bad habit) and the first import statement is wrong.

link|improve this answer
what does it mean wrong? Everything was compiled correctly and in 1st line I have comments. – smas Mar 10 '11 at 11:22
Can you show me what's inside your MyClass.java? – adarshr Mar 10 '11 at 11:23
look at my edit – smas Mar 10 '11 at 11:28
1  
Where is the semicolon? – adarshr Mar 10 '11 at 11:29
ohhh, yes it is - I rewrited class in my notepad so I've forgotten about ";". Like I've said - everything compiled correctly – smas Mar 10 '11 at 11:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.