class Braintree::ValidationsFailed

Attributes

error_result[R]

Public Class Methods

new(error_result) click to toggle source
# File lib/braintree/exceptions.rb, line 36
def initialize(error_result)
  @error_result = error_result
end

Public Instance Methods

inspect() click to toggle source
# File lib/braintree/exceptions.rb, line 40
def inspect
  "#<#{self.class} error_result: #{@error_result.inspect}>"
end
to_s() click to toggle source
# File lib/braintree/exceptions.rb, line 44
def to_s
  inspect
end