I drafted this long ago, then quit my job where I was writing Java and never looked back… till now, since I’m writing for Android. I thought it would be fun to see if I’ve learned anything in the seven years since I wrote this.
The not-very-secret secret to simplifying code is really very simple: just remove error handling. One hobbled dialect of Java burdened with bulky XML syntax built its success on removing the constraints of compile-time type checking and exceptions [I meant Spring].
Fortunately, those who handle errors formed an elite group of code writers. They stand between us mere mortals and chasm of infinite code failure. I know this because Bjarne Stroustrup appeared to me in a dream and directed me to where I found the Silicon tablets that contained this group’s Java wisdom.
That is, at least, what I wish happened. Actually, no one really knows the best way to handle exceptions. I suspect this somehow relates to them being exceptional; guidelines scattered around the internet are usually incomplete and often contradictory. To make things worse, my own ideas on the matters of error handling best practices vary with the situation.
Nevertheless, I add my noise about how you should use Java’s exceptions to the rest. In this series, I summarize and categorize many of the Java error handling best practices I have heard.
I categorize each rule based on arbitrary axes of “Truth” and “Importance,” which roughly match how religiously you should follow the guideline and how severe the consequences if you do not.
Truth indicates how often you should follow the rule.
- Low truth: Ignore the rule
- Medium truth: Follow the rule sometimes
- High truth: Always follow the rule
Importance indicates what happens when you do not follow the truth. That is, the damage code suffers by either following a low-truth rule or breaking a high-truth rule.
- Low importance: No serious risks
- Medium importance: Sometimes very dangerous
- High importance: Always risks horrible consequences
I begin with a simple one:
Do not specify “throws Exception”
Truth: high
Importance: low
Throwing “Exception” pesters client coders without providing any useful information. It ranks high on truth because only sloppy laziness and stupidity cause people to violate it. Still, I rank it as a low importance because annoyance is worst consequence of violation unless coupled with breaking another rule, like using an empty catch block to suppress the Exception.
Do not use exceptions for flow control
Truth: high
Importance: medium
Although this is the rare rule where everyone agrees, some people still break it.
Author’s note, seven years later: the linked api throws an exception to indicate login failure. I still consider that a poor design, but at the time I didn’t know about Python’s StopIteration, which actually makes sense.
Despite the universal agreement on this principle, most writers fail to give any better reason than blustering about the expense of generating stack traces. While not really premature optimization, that argument smells like it because the two are barely related. Improving performance by avoiding exception-based flow control is like improving your sex life by brushing your teeth.
The real danger of exception-based flow control lies in exception suppression. For example, the poke method lets you jab a stooge in the eye.
public String poke(String stooge) throws StoogeNotFoundException { if (stooges.contains(stooge)) { return "Woopwoopwoopwoop"; } else { throw new StoogeNotFoundException("Wise guy, eh"); } }
You can write a hideous, dangerous, unforgivable isStooge method like so.
public boolean isStooge(String name) { // Evil. Never do this. try { poke(name); return true; } catch (Exception e) { return false; } }
This isStooge hides and forgets any exception poke throws, not just StoogeNotFound. On average, however, exception-based flow control is not this dangerous, though still unbearably ugly.
If the snippet specified “catch (StoogeNotFoundException),” the try-catch would just be a structured replacement for goto. When done correctly, using exceptions for flow control is merely poor style used by those who long for the good old days of goto. Stay away from it for the same reason you stay away from top hats and morning coats.
3 thoughts on “Exception Rules”