Skip to content

Instantly share code, notes, and snippets.

@einarwh
Created June 27, 2014 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save einarwh/2e7e2ee4d856a47b36a7 to your computer and use it in GitHub Desktop.
Save einarwh/2e7e2ee4d856a47b36a7 to your computer and use it in GitHub Desktop.
The interesting code is drowning in the noise caused by exception handlers.
try {
// Interesting code.
}
catch (SomeException ex) {
// Dull code.
}
catch (SomeOtherException ex) {
// Dull code.
}
catch (YetAnotherException ex) {
// Dull code.
}
catch (Exception ex) {
// Dull code.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment