Skip to content

Instantly share code, notes, and snippets.

@shiffman
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save shiffman/63337657a9c07d4cf616 to your computer and use it in GitHub Desktop.

Select an option

Save shiffman/63337657a9c07d4cf616 to your computer and use it in GitHub Desktop.
Common Processing Errors
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: ##
@kasperkamperman

Copy link
Copy Markdown

cannot convert from float to int > Type mismatch, "float" does not match with "int"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment