Exception: Familia::NotDistinguishableError

Inherits:
HorreumError show all
Defined in:
lib/familia/errors.rb

Overview

Raised when a value cannot be converted to a distinguishable string representation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ NotDistinguishableError

Returns a new instance of NotDistinguishableError.



75
76
77
78
# File 'lib/familia/errors.rb', line 75

def initialize(value)
  @value = value
  super
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



73
74
75
# File 'lib/familia/errors.rb', line 73

def value
  @value
end

Instance Method Details

#messageObject



80
81
82
# File 'lib/familia/errors.rb', line 80

def message
  "Cannot represent #{value}<#{value.class}> as a string"
end