lib/money/errors.rb



# frozen_string_literal: true

class Money
  class Error < StandardError
  end

  class IncompatibleCurrencyError < Error
  end
end