Skip to content

Instantly share code, notes, and snippets.

@saturnflyer
Created November 26, 2013 18:37
Show Gist options
  • Save saturnflyer/7663513 to your computer and use it in GitHub Desktop.
Save saturnflyer/7663513 to your computer and use it in GitHub Desktop.
Exception cause patch for access like a null object
class Exception
def cause_message
cause && cause.message
end
def cause_backtrace
cause && cause.backtrace
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment