class Unravel::NoErrorHandler

Attributes

exception[R]
name[R]

Public Class Methods

new(name, ex) click to toggle source
# File lib/unravel.rb, line 27
def initialize(name, ex)
  @name = name
  @exception = ex
end

Public Instance Methods

message() click to toggle source
# File lib/unravel.rb, line 32
def message
  "Achievement #{name.inspect} is not declared to handle exceptions of type: #{ex.class}"
end