Please explain what this error message means to me
in
Programming Questions
•
2 years ago
FATAL EXCEPTION: Thread-11
java.lang.NoSuchMethodError: processing.core.PApplet.loadImage
at com.modestmaps.InteractiveMap$TileLoader.run(InteractiveMap.java:457)
at java.lang.Thread.run(Thread.java:1020)
What I *think* I understand:
InteractiveMap$TileLoader is calling on a method loadImage.
loadImage should be a method within PApplet.java, however for some reason it does not exist.
Becouse of this, the program crashes.
Now, what more information can I find in this message? What do all the numbers mean? Are they referring to lines of coad?
What does Thread 11 mean?
*
Next step: How would I go about fixing this?
Its an android application - if you know anything about Android & Processing, I have a more detailed post here, and would appreceate help: http://forum.processing.org/topic/modest-maps-android-help-me-fix-error
(I know I technically am cross posting here, however with this post I am just hoping for some generall help with interpreting the error message, rather than a solution to my problem, so I hope you will tolerate this.)
Thanks for any input
P.
java.lang.NoSuchMethodError: processing.core.PApplet.loadImage
at com.modestmaps.InteractiveMap$TileLoader.run(InteractiveMap.java:457)
at java.lang.Thread.run(Thread.java:1020)
What I *think* I understand:
InteractiveMap$TileLoader is calling on a method loadImage.
loadImage should be a method within PApplet.java, however for some reason it does not exist.
Becouse of this, the program crashes.
Now, what more information can I find in this message? What do all the numbers mean? Are they referring to lines of coad?
What does Thread 11 mean?
*
Next step: How would I go about fixing this?
Its an android application - if you know anything about Android & Processing, I have a more detailed post here, and would appreceate help: http://forum.processing.org/topic/modest-maps-android-help-me-fix-error
(I know I technically am cross posting here, however with this post I am just hoping for some generall help with interpreting the error message, rather than a solution to my problem, so I hope you will tolerate this.)
Thanks for any input
P.
1