views:

16

answers:

1

I have created a new Java Application in JDeveloper. That application only uses the Java application. No Swing and no ADF technologies are used.

I have created a new class with a static main method.

When I'm trying to compile the project, this error is shown:

Error: Exception thrown during compilation: oracle/classloader/util/AnnotatedNoClassDefFoundError

I'm trying to find on Google any reference of this, but each page that I see talks about ADF.

Anybody knows how to fix that issue?

Edit: the class code:

package wewe;

public class Class1 {
    public Class1() {
    }

    public static void main(String[] args) {
        Class1 class1 = new Class1();
    }
}
A: 

It seems that I didn't installed correctly the JDK, and JDeveloper didn't reported. Now all works.

Nitz