Class: Err::Service
- Inherits:
-
Object
- Object
- Err::Service
- Defined in:
- lib/err/service.rb
Class Method Summary collapse
- .enabled? ⇒ Boolean
- .environments=(envs) ⇒ Object
- .ignored=(exception_names) ⇒ Object
- .message(msg) ⇒ Object
- .notify(exception) ⇒ Object
Class Method Details
.enabled? ⇒ Boolean
4 5 6 |
# File 'lib/err/service.rb', line 4 def enabled? raise NotImplementedError end |
.environments=(envs) ⇒ Object
8 9 10 |
# File 'lib/err/service.rb', line 8 def environments=(envs) raise NotImplementedError end |
.ignored=(exception_names) ⇒ Object
12 13 14 |
# File 'lib/err/service.rb', line 12 def ignored=(exception_names) raise NotImplementedError end |
.message(msg) ⇒ Object
20 21 22 |
# File 'lib/err/service.rb', line 20 def (msg) raise NotImplementedError end |
.notify(exception) ⇒ Object
16 17 18 |
# File 'lib/err/service.rb', line 16 def notify(exception) raise NotImplementedError end |