Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created January 14, 2011 10:27
Show Gist options
  • Save igaiga/779453 to your computer and use it in GitHub Desktop.
Save igaiga/779453 to your computer and use it in GitHub Desktop.
class MyException < StandardError
attr_accessor :log_level
def initialize(log_level, message)
@log_level = log_level
super message
end
def log
"[Exception class: #{self.class}] [message: #{message}] [backtrace: #{backtrace}]"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment