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    
lobbyist-ruby / lib / lobbyist / error / not_implemented.rb
Size: Mime:
module Lobbyist
  class Error
    # Raised when Customer Lobby returns the HTTP status code 503
    class NotImplemented < Lobbyist::Error::ServerError
      HTTP_STATUS_CODE = 501
      MESSAGE = "The service you requested is not provided by customerlobby currently"
    end
  end
end