Sha256: 23d4701ca04530ffb5cfae5cefa26af6f3c13caa472fc7604eca31315722b517

Contents?: true

Size: 443 Bytes

Versions: 13

Compression:

Stored size: 443 Bytes

Contents

# typed: strict
# frozen_string_literal: true

module EML
  module REST
    class DailyFundingLimitError < ::EML::RESTError
      sig do
        params(
          message: T.nilable(String),
          response: T.nilable(EML::Response)
        ).void
      end
      def initialize(message = nil, response = nil)
        message ||= "The daily maximum load amount has been reached"
        super(message, response)
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
eml-3.0.0 lib/eml/error/rest/daily_funding_limit.rb
eml-2.2.0 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.8 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.7 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.6 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.5 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.4 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.3 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.2 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.1 lib/eml/error/rest/daily_funding_limit.rb
eml-2.1.0 lib/eml/error/rest/daily_funding_limit.rb
eml-2.0.0 lib/eml/error/rest/daily_funding_limit.rb
eml-1.0.0 lib/eml/error/rest/daily_funding_limit.rb