Skip to main content

Section 11.7 Key Concepts

  1. Three types of errors that occur in Java: Syntax Errors, Logic Errors, and Runtime Errors
  2. Syntax errors occur when code formatting rules defined by Java are violated.
  3. The Java compiler reports syntax errors when an attempt is made to compile a program.
  4. Logic errors occur when a syntactically correct program compiles and runs, but produces results that is incorrect.
  5. Logic errors cause incorrect program flow.
  6. Runtime errors occur when an unexpected error occurs while a program is running.
  7. Runtime errors may be due to unexpected situations such as invalid array indexes, missing files, etc. These are called exceptions.
  8. With no special intervention, an exception will cause a Java program to halt with an indication of what caused the exception.
  9. Runtime exceptions may be caught and handled by a Java program.
  10. The try-catch and try-catch-finally statements are used to catch and handle runtime exceptions.
  11. Exceptions are represented as objects in the Java Core Library and all exception classes inherit the java.lang.Exception class.
  12. Common exception classes include ArithmeticException, NullPointerException, IndexOutOfBoundsException, ArrayIndexOutOfBoundsException, IllegalArgumentException
  13. The try-block contains code which may throw an exception.
  14. The catch-block is the code that will be executed if a matching exception is thrown.
  15. The optional finally-block contains code that is guaranteed to execute, regardless of whether an exception was thrown.
  16. The catch-block may specify the class or superclass that it is willing to catch and handle. A catch-block will handle a thrown exception object if it binds to the declared exception variable.
  17. Multiple catch-blocks may be specified if different exception classes are to be handled differently.
  18. As a class, exceptions may be instantiated to create exception objects and the object may be thrown. This is accomplished with the throw statement.
  19. Exception classes may be subclasses to create new custom catchable exception classes with unique data and behavior.
  20. There are two important exception class categories: checked exceptions and unchecked exceptions.
  21. The Java compiler requires that all checked exceptions are handled with a try-catch and will refuse to compile a program with a checked exception that is not caught.
  22. The Exception class and its derived classes, excluding the RuntimeException subclass and its derived classes, are checked exceptions.
  23. Checked exceptions include IOExceptions and its subclasses such as FileNotFoundException.
  24. The handling of checked exceptions may be deferred from one method to its calling method by adding a throws modifier to the method declaration.
  25. Unchecked exceptions are not required to be caught, and may cause a program to halt and dump a stack trace at runtime if thrown and not caught.
  26. RuntimeExceptions, such as IndexOutOfBoundException, are examples of unchecked exceptions.
  27. There is an important distinction between errors and exceptions in Java: unlike exceptions, errors are fatal and cannot be handled.
  28. Exception objects have their own methods that may be invoked when instantiated or caught.
  29. The printStackTrace() method of Exception objects will print to the terminal a snapshot of the call stack at the moment the exception was thrown.
  30. A variation on the try-catch statement called try-with-resources will automatically close an open resource when an exception occurs, such as an open file.