Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 229 Bytes

Exceptions.md

File metadata and controls

6 lines (4 loc) · 229 Bytes

Some common Exceptions and likely causes of each of them.

NullPointerException

  • Some variable is missing. Check input and output fields.
  • Using ungrounding variable !! when a nullable variable ! should be used instead.