Last active
August 29, 2015 14:23
-
-
Save shiffman/63337657a9c07d4cf616 to your computer and use it in GitHub Desktop.
Common Processing Errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| compile-time: | |
| Missing a semi-colon ";" | |
| Missing left parentheses "(" | |
| Missing right curly bracket "}" | |
| The variable “myVar” doesn't exist. | |
| The local variable “myVar” may not have been initialized. | |
| The class “Thing” doesn't exist. | |
| The function "myFunction()" expects parameters like this: myFunction(type, type, type, ...) | |
| The method "function(type, type, type, ...)" doesn't exist. | |
| Error on "_____" | |
| runtime: | |
| java.lang.NullPointerException | |
| java.lang.ArrayIndexOutOfBoundsException: ## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cannot convert from float to int > Type mismatch, "float" does not match with "int"