I am inching forward building a very simple, experimental app using Eclipse.
I had a couple of basic screen drawing functions working.... a couple of lines, and a bit of text.
I moved some variables around, and began getting
"Could not find symbol Graphics.Failed invoking <symbol>Failed loading application"
at RUN TIME.
NOT at compile time..... no errors at "compile" time.
I searched the documentation for descriptions of errors and cannot find any description of this.
The error does not point at any line in the source, nor does it name a function.
I have now commented out ALL of the operational code that touches those variables... and everything else in the related functions other than Sys.println() calls, and the error persists.
So..... assuming that there's some kind of typo lurking in my source now...
1) Why doesn't the compiler flag it ?
2) If there's a runtime error, why doesn't it describe the function that it's occurring in ?
3) Where is there documentation about these kinds of errors ?
What DOES the compiler catch in the way of errors, and what kinds of errors get by and therefore make your app prone to crashing at runtime ?