otvorenesudy/otvorenesudy-api

View on GitHub
lib/exception_handler.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
50%
module ExceptionHandler
  def self.run
    begin
      yield
    rescue Exception => e
      Rollbar.error(e)
    end
  end
end