Easily create an exception with backtrace.
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)
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 🎉
Add this line to your application's Gemfile:
gem "active_error"
And then execute:
$ bundle
Or install it yourself as:
$ gem install active_error
Bug reports and pull requests are welcome on GitHub at https://github.com/JuanitoFatas/active_error.
The gem is available as open source under the terms of the Apache License 2.0.