class Brickwall::API::Error

Public Instance Methods

user_error?() click to toggle source

From www.paymentwall.com/en/documentation/Brick/2968#list-of-error-codes

# File lib/brickwall/api/error.rb, line 6
def user_error?
  case code
  when 3003..3112 then true
  when 3200 then true
  when 5000 then true
  else false
  end
end