class PIM::ErrorValue
Attributes
error_message[R]
error_value[R]
expected_type[R]
Public Class Methods
new(error_value, expected_type, error_message = nil)
click to toggle source
# File pim.rb, line 4126 def initialize error_value, expected_type, error_message = nil @error_value = error_value @expected_type = expected_type @error_message = error_message end
Public Instance Methods
==(other)
click to toggle source
# File pim.rb, line 4132 def ==(other) return true if other.is_a?(ErrorValue) and error_value == other.error_value and expected_type == other.expected_type and error_message == other.error_message end
as_json()
click to toggle source
# File pim.rb, line 4136 def as_json return nil end