class Finicity::DuplicateCustomerError
Attributes
username[R]
Public Class Methods
new(username)
click to toggle source
# File lib/finicity/errors.rb, line 24 def initialize(username) @username = username end
Public Instance Methods
to_s()
click to toggle source
# File lib/finicity/errors.rb, line 28 def to_s "Multiple customers found with username: #{username}" end