36

try {
// code that will someday
// throw an exception. Today is
// not that day.
}
catch(Exception ex) {
// The big day has arrived! BUT...
// I'm a heartless bastard who
// does not log errors.
// Good luck finding me!
}

Comments
  • 0
    try:
    # do some stuff that I actually expect exception
    except: pass

    Peers: Don't do that!!!
    le me: huh?
  • 0
    This reminded me of game of thrones :(
Add Comment