Exception: StartupStats::Error::ServerError

Inherits:
StartupStats::Error show all
Defined in:
lib/startupstats/error/server_error.rb

Overview

Raised when a StartupStats API returns a 5xx HTTP status code

Direct Known Subclasses

BadGateway, GatewayTimeout, InternalServerError

Constant Summary collapse

MESSAGE =
"Server Error"

Instance Attribute Summary

Attributes inherited from StartupStats::Error

#wrapped_exception

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StartupStats::Error

#backtrace, descendants, errors

Constructor Details

#initialize(message = nil, response_headers = {}) ⇒ StartupStats::Error::ServerError

Initializes a new ServerError object

Parameters:

  • message (String) (defaults to: nil)
  • response_headers (Hash) (defaults to: {})


22
23
24
# File 'lib/startupstats/error/server_error.rb', line 22

def initialize(message=nil, response_headers={})
  super((message || self.class.const_get(:MESSAGE)), response_headers)
end

Class Method Details

.from_response(response = {}) ⇒ StartupStats::Error

Create a new error from an HTTP environment

Parameters:

  • response (Hash) (defaults to: {})

Returns:



13
14
15
# File 'lib/startupstats/error/server_error.rb', line 13

def self.from_response(response={})
  new(nil, response[:response_headers])
end