class Gateway::BadGateway

When backend did not send back an (processible) response. Usually when connection is dropped.

Public Class Methods

new(msg) click to toggle source
Calls superclass method
# File lib/gateway/errors.rb, line 22
def initialize(msg)
  super
  self.status = "502"
end