class Comet::APIResponseError

Network-level error responses should be caught using the Net::HTTP error types.
type. These represent application-level error responses from the Comet Server API.
APIResponseError is a custom exception class that wraps the Comet::CometAPIResponseMessage

def initialize(carm)

def initialize(carm)
  @detail = carm
  super("#{carm.message} (#{carm.status})")
end