Class: BackgroundLite::SilentNotificationErrorReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/background_lite/core_ext/error_reporters/silent_error_reporter.rb

Overview

Does not report errors at all.

Class Method Summary collapse

Class Method Details

.report(error) ⇒ Object

Suppresses the error message by not reporting anything.



5
6
7
# File 'lib/background_lite/core_ext/error_reporters/silent_error_reporter.rb', line 5

def self.report(error)
  # do nothing
end