Exception: Spider::Model::FormatError
- Inherits:
-
FormatError
- Object
- RuntimeError
- FormatError
- Spider::Model::FormatError
- Defined in:
- lib/spiderfw/model/model.rb
Overview
Error raised when data can’t be accepted.
Instance Attribute Summary collapse
- #element ⇒ Element readonly
- #value ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(element, value, message) ⇒ FormatError
constructor
Takes an Element, the value, and a message.
- #to_s ⇒ Object
Constructor Details
#initialize(element, value, message) ⇒ FormatError
Takes an Element, the value, and a message. The message should be a format specification; it will be %‘d with the value.
error = FormatError.new(my_element, 3, "Element value %s is wrong.")
error.to_s => "Element value 3 is wrong."
347 348 349 350 351 352 |
# File 'lib/spiderfw/model/model.rb', line 347 def initialize(element, value, ) @element = element @message = @value = value super() end |