Sha256: 5d1674ea5a9d2740fec9cc9346bb3435a48a0d8e9ba33fed0963813927eac333
Contents?: true
Size: 282 Bytes
Versions: 33
Compression:
Stored size: 282 Bytes
Contents
# frozen_string_literal: true module Alchemy module ErrorTracking class BaseHandler def self.call(exception) # implement your own notification method end end mattr_accessor :notification_handler @@notification_handler = BaseHandler end end
Version data entries
33 entries across 33 versions & 1 rubygems