Sha256: d7c160d388d2c42173a82033e6fa7ea7e032caac387cfee545fe7d95a930fe94
Contents?: true
Size: 348 Bytes
Versions: 17
Compression:
Stored size: 348 Bytes
Contents
module Hermes class DatabaseErrorHandler attr_reader :error_notification_service private :error_notification_service def initialize(error_notification_service:) @error_notification_service = error_notification_service end def call(error) error_notification_service.capture_exception(error) end end end
Version data entries
17 entries across 17 versions & 1 rubygems