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 4129 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 4135 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 4139 def as_json return nil end