Exception: Restspec::Schema::Checker::NoObjectError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/restspec/schema/checker.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#objectObject

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_sObject



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