first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

Java Exceptions: The Catch or Specify Requirement

Valid Java programming language code must honor the Catch or Specify Requirement. This means that code that might throw certain exceptions must be enclosed by either of the following:

Code that fails to honor the Catch or Specify Requirement will not compile. …Not all exceptions are subject to the Catch or Specify Requirement.

[http://java.sun.com/docs/books/tutorial/ essential/exceptions/catchOrDeclare.html]

mod date: 2008-08-24T07:15:56.000Z