Ik krijg deze foutmelding, weet iemand wat er fout is?
Exception in thread "main" java.lang.NoClassDefFoundError: nl/hen/ict/gui/Reporter
at Venster.output(Venster.java:6)
at Apl.main(Apl.java:5)
De broncodes zien er zo uit:
Apl.java
Venster.java
Weet iemand wat er hier fout aan is?
Exception in thread "main" java.lang.NoClassDefFoundError: nl/hen/ict/gui/Reporter
at Venster.output(Venster.java:6)
at Apl.main(Apl.java:5)
De broncodes zien er zo uit:
Apl.java
code:
1
2
3
4
5
6
7
8
9
| public class Apl {
public static void main(String args[]) {
Venster venster = new Venster();
venster.output();
}
}
] |
Venster.java
code:
1
2
3
4
5
6
7
8
9
10
11
12
| import nl.hen.ict.gui.*;
public class Venster {
public void output() {
Reporter reporter = new Reporter("De uitvoer");
Questioner.askInt("Blaat?", 55);
System.out.println("ghhghGHghghgg");
}
} |
Weet iemand wat er hier fout aan is?