class Aloe::InoperableAccountError

Public Class Methods

new(account) click to toggle source
# File lib/aloe/inoperable_account_error.rb, line 3
def initialize(account)
  @account = account
end

Public Instance Methods

to_s() click to toggle source
# File lib/aloe/inoperable_account_error.rb, line 7
def to_s
  "Account #{@account} is inoperable! (account state: #{@account.state})"
end