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 / bad_gateway.rb
Size: Mime:
module Lobbyist
  class Error
    # Raised when Customer Lobby returns the HTTP status code 502
    class BadGateway < Lobbyist::Error::ServerError
      HTTP_STATUS_CODE = 502
      MESSAGE = "The Customer Lobby Api is down or being upgraded."
    end
  end
end