Class: Err::Service

Inherits:
Object
  • Object
show all
Defined in:
lib/err/service.rb

Class Method Summary collapse

Class Method Details

.enabled?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


4
5
6
# File 'lib/err/service.rb', line 4

def enabled?
  raise NotImplementedError
end

.environments=(envs) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/err/service.rb', line 8

def environments=(envs)
  raise NotImplementedError
end

.ignored=(exception_names) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/err/service.rb', line 12

def ignored=(exception_names)
  raise NotImplementedError
end

.message(msg) ⇒ Object

Raises:

  • (NotImplementedError)


20
21
22
# File 'lib/err/service.rb', line 20

def message(msg)
  raise NotImplementedError
end

.notify(exception) ⇒ Object

Raises:

  • (NotImplementedError)


16
17
18
# File 'lib/err/service.rb', line 16

def notify(exception)
  raise NotImplementedError
end