Skip to content

Instantly share code, notes, and snippets.

@m0wfo
Created June 7, 2016 22:51
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 m0wfo/807defe5dba3a5c958b16c0bfb3ec7c1 to your computer and use it in GitHub Desktop.
Save m0wfo/807defe5dba3a5c958b16c0bfb3ec7c1 to your computer and use it in GitHub Desktop.
try {
client.makeCall(someArgument);
} catch (IOException e) {
log.error("Oh bumcakes", e);
return null;
}
// or even more obnoxious
try {
client.makeCall(someArgument);
} catch (IOException e) {
log.error("Oh bumcakes", e);
return "?WTF?";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment