class Money::Currency::MissingAttributeError

def initialize(method, currency, attribute)

def initialize(method, currency, attribute)
  super(
    "Can't call Currency.#{method} - currency '#{currency}' is missing "\
    "the attribute '#{attribute}'"
  )
end