class Braintree::ValidationsFailed
Attributes
error_result[R]
Public Class Methods
new(error_result)
click to toggle source
# File lib/braintree/exceptions.rb, line 35 def initialize(error_result) @error_result = error_result end
Public Instance Methods
inspect()
click to toggle source
# File lib/braintree/exceptions.rb, line 39 def inspect "#<#{self.class} error_result: #{@error_result.inspect}>" end
to_s()
click to toggle source
# File lib/braintree/exceptions.rb, line 43 def to_s inspect end