JVM Languages
jqa1101.txt
Associated article: What Are Checked Exceptions?
Tags: JVM Languages
Published source code accompanying the article by Oliver Goldman in which he examines the Java's checked and unchecked exceptions.
Java Q&A
by Oliver Goldman
Listing One
// Strategy: Suppress
// Initialization for a class that has nothing to do with I/O
public void initialize() {
try {
// Load pre-computed values for this class.
InputStream is = new FileInputStream( CACHE_FILE );
is....


