Error handling like a three-prong outlet

Error handling like a three-prong outlet

For the first 50 years or so, this is what electrical outlets in homes looked like (at least in America and some other places):

What outlets used to look like until the 1960s (now illegal to put in new homes in the US as of 1971)

This particular design allows 120V of electricity to power any electronic device with a plug of this shape, while the plastic and rubber protect our fragile meat-flesh from its consuming power. Ideally, electricity flows out of one end (the hot wire ā€” usually black), through a device to power it, and flows out into the neutral wire (usually white). Like water flowing downhill. Does it work? Yes. Most of the time.

The reality is that electricity could go through anything that comes in contact with those wires, be it floors, walls, ceilings, furniture, petsā€”you name it. Yet it doesnā€™t, because the effort required for electricity to move through rubber, plastic, and wood is ~1,000,000,000,000,000,000,000Ć— harder than to just move through the metal wiring. At least, it should be.

so electricity IRL, amirite?

_However _(you probably saw this coming), there are some instances where electricityā€™s path from hot to neutral is not the path of least resistance. Sometimes this is because a pet chewed a cord and the wiring is exposed. Sometimes something breaks or overheats in a device. Sometimes itā€™s just cheap manufacturing. There are virtually infinite non-ideal scenarios where electricity doesnā€™t go where expect it to. And that usually leads toā€¦

Ooh girl, shock me like an electric eel

Often in software development, we write code for perfect scenarios that work most of the time. When everything behaves perfectly and users do what we expect them to, our application runs without errors. But often people may do silly things like have Null as their last name. Or enter a database query into a field.

For electricity, all we really needed to do to solve this problem is add a third prong: the ground. 99% of the time it isnā€™t needed, but for that 1% of the time something goes wrong, a ground wire provides electricity an escape route with a resistance so low that conceivably nothing would be an easier path. And even though ground prongs exist for < 1% of scenarios, they are a necessary part of every physical outlet and medium-to-large device plug.

Ground wires account for < 1% of scenarios but are still a necessary part of every physical outlet and device plug.

Back to software: errors and bad user input are much more common than electrical grounds being used. Yet, why do we continue to build programs that spit out stupid/unhelpful error messages? Why doesnā€™t every API return proper HTTP status codes? Why do core navigations of so many sites depend on third-party tracking scripts to load? Why do web forms omit actions making it impossible to submit when thereā€™s a JavaScript error? Why is it so, so easy to unravel a large application oftentimes by just pulling on one thread? Often itā€™s due to sloppy/non-existant error handling.

Error: a suitable error message could not be found

Sure, sureā€”unless youā€™re the developer responsible for developing an Internet-capable fire sprinkler (which I wouldnā€™t wish upon any human), youā€™re not going to cause house fires if you donā€™t handle errors gracefully. But like a ground prong in an outlet, error handling should be so ingrained in your development process that to skip it should feel like using a cheater plug (TL;DR theyā€™re bad and dangerous). You cheater.

Donā€™t be a cheater. Youā€™re better than that.

In the dynamically-typed languages like JavaScript that so many of us rely on, you canā€™t exert complete control over what your data is or becomes. You may expect myNumber to be an integer, but if you expose that, the language itself canā€™t prevent bad user input or a program error to reassign that numeric variable to be corndog or Guy Fieri. So itā€™s essential in your error handling process you use things like tryā€¦catch and switch, as well as validation libraries if your language/framework doesnā€™t handle that on its own.

Whatever you incorporate into your process, always write code that expects errors to arise.