Java exceptions

123456789
Across
  1. 2. – Checked: Thrown when attempting to open a non-existent file.
  2. 4. – Unchecked: Arithmetic error, like division by zero.
  3. 5. – Unchecked: Invalid method parameter passed
  4. 6. – Unchecked: Dereferencing a null reference.
  5. 7. – Checked: Requested method does not exist (common in reflection).
  6. 8. – Unchecked: Invalid casting between incompatible types
  7. 9. – Checked: File or stream operations, often used in try-with-resources.
Down
  1. 1. – Unchecked: Specifically for arrays.
  2. 3. – Unchecked: Failed conversion from string to number (e.g., "abc" to int).