Awesome
ActiveError
Easily create an exception with backtrace.
Usage
ActiveError.new(StandardError, "error message")
ActiveError.new(StandardError, "error message", backtrace: caller)
# default error class is StandardError
ActiveError.new("error message")
ActiveError.new("error message", backtrace: caller)
Why
Fix this common pattern:
exception = StandardError.new("error message")
exception.set_backtrace(caller)
Should be in one-step:
ActiveError.new(StandardError, "error message", backtrace: caller)
Enjoy :tada:
Installation
Add this line to your application's Gemfile:
gem "active_error"
And then execute:
$ bundle
Or install it yourself as:
$ gem install active_error
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/JuanitoFatas/active_error.
License
The gem is available as open source under the terms of the Apache License 2.0.