Exception: JSONModel::ValidationException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/aspace_client/jsonmodel.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(opts) ⇒ ValidationException

Returns a new instance of ValidationException.



40
41
42
43
44
45
46
# File 'lib/aspace_client/jsonmodel.rb', line 40

def initialize(opts)
  @invalid_object = opts[:invalid_object]
  @errors = opts[:errors]
  @import_context = opts[:import_context]
  @object_context = opts[:object_context]
  @attribute_types = opts[:attribute_types]
end

Instance Attribute Details

#attribute_typesObject

Returns the value of attribute attribute_types.



36
37
38
# File 'lib/aspace_client/jsonmodel.rb', line 36

def attribute_types
  @attribute_types
end

#errorsObject

Returns the value of attribute errors.



34
35
36
# File 'lib/aspace_client/jsonmodel.rb', line 34

def errors
  @errors
end

#import_contextObject

Returns the value of attribute import_context.



37
38
39
# File 'lib/aspace_client/jsonmodel.rb', line 37

def import_context
  @import_context
end

#invalid_objectObject

Returns the value of attribute invalid_object.



33
34
35
# File 'lib/aspace_client/jsonmodel.rb', line 33

def invalid_object
  @invalid_object
end

#object_contextObject

Returns the value of attribute object_context.



38
39
40
# File 'lib/aspace_client/jsonmodel.rb', line 38

def object_context
  @object_context
end

#warningsObject

Returns the value of attribute warnings.



35
36
37
# File 'lib/aspace_client/jsonmodel.rb', line 35

def warnings
  @warnings
end

Instance Method Details

#to_sObject



48
49
50
51
52
53
# File 'lib/aspace_client/jsonmodel.rb', line 48

def to_s
   msg = { :errors => @errors } 
   msg[:import_context] = @import_context unless @import_context.nil? 
   msg[:object_context] = @object_context unless @object_context.nil? 
   "#<:ValidationException: #{msg.inspect}>"
end