Sha256: 32663aaf046caaa1b580932191237feb560ad3d8808dac38ab9497f6104ced42
Contents?: true
Size: 413 Bytes
Versions: 141
Compression:
Stored size: 413 Bytes
Contents
# frozen_string_literal: true # The host app can supply a handler for logging errors in background jobs, like so # Renalware::Engine.exception_notifier = MyExceptionNotifier.new # where the supplied instance must respond to .notify(exception, **params). # Where a handler is not supplied we default to using this null handler. class NullExceptionNotifier def notify(exception, **_params) # noop end end
Version data entries
141 entries across 141 versions & 1 rubygems