lib/ethon/errors/ethon_error.rb



# frozen_string_literal: true
module Ethon
  module Errors

    # Default Ethon error class for all custom errors.
    class EthonError < StandardError
    end
  end
end