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 / internal_server_error.rb
Size: Mime:
module Lobbyist
  class Error
    # Raised when Lobbyist returns the HTTP status code 500
    class InternalServerError < Lobbyist::Error::ServerError
      HTTP_STATUS_CODE = 500
      MESSAGE = "Something is technically wrong."
    end
  end
end