Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
kickserv / lib / kickserv / errors / no_data_found_error.rb
Size: Mime:
# frozen_string_literal: true

# custom error if not data found in the response.
module Kickserv
  module Error
    class NoDataFoundError < StandardError
    end
  end
end