Exception: Restspec::Schema::Checker::NoObjectError
- Inherits:
-
StandardError
- Object
- StandardError
- Restspec::Schema::Checker::NoObjectError
- Defined in:
- lib/restspec/schema/checker.rb
Instance Attribute Summary collapse
-
#object ⇒ Object
Returns the value of attribute object.
Instance Method Summary collapse
-
#initialize(object) ⇒ NoObjectError
constructor
A new instance of NoObjectError.
- #to_s ⇒ Object
Constructor Details
#initialize(object) ⇒ NoObjectError
Returns a new instance of NoObjectError.
63 64 65 |
# File 'lib/restspec/schema/checker.rb', line 63 def initialize(object) self.object = object end |
Instance Attribute Details
#object ⇒ Object
Returns the value of attribute object.
61 62 63 |
# File 'lib/restspec/schema/checker.rb', line 61 def object @object end |
Instance Method Details
#to_s ⇒ Object
67 68 69 |
# File 'lib/restspec/schema/checker.rb', line 67 def to_s "The object #{object}:#{object.class} is not a hash. It doesn't have attributes to be checked" end |