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.
135 136 137 |
# File 'lib/restspec/schema/checker.rb', line 135 def initialize(object) self.object = object end |
Instance Attribute Details
#object ⇒ Object
Returns the value of attribute object.
133 134 135 |
# File 'lib/restspec/schema/checker.rb', line 133 def object @object end |
Instance Method Details
#to_s ⇒ Object
139 140 141 |
# File 'lib/restspec/schema/checker.rb', line 139 def to_s "The object #{object}:#{object.class} is not a hash. It doesn't have attributes to be checked" end |