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 / gateway_timeout.rb
Size: Mime:
module Lobbyist
  class Error
    # Raised when Customer Lobby returns the HTTP status code 504
    class GatewayTimeout < Lobbyist::Error::ServerError
      HTTP_STATUS_CODE = 504
      MESSAGE = "The Customer Lobby Api servers are up, but the request couldn't be serviced due to some failure within our stack. Try again later."
    end
  end
end