class Exceptions::Backends::Raiser

Public: Raiser is an implementation of the Backend interface that raises the exception.

Public Instance Methods

notify(exception, options = {}) click to toggle source
# File lib/exceptions/backends/raiser.rb, line 5
def notify(exception, options = {})
  raise exception
end