class SSE::Errors::HTTPProxyError

An exception class indicating that an HTTP proxy server returned an error.

Attributes

status[R]

The HTTP status code. @return [Int]

Public Class Methods

new(status) click to toggle source
Calls superclass method
# File lib/ld-eventsource/errors.rb, line 46
def initialize(status)
  @status = status
  super("proxy server returned error #{status}")
end