class Xcflushd::Reporter::ThreeScaleInternalError

Exception raised when the 3scale client is called with the right params but it returns a ServerError. Most of the time this means that 3scale is unreachable, although it could also be caused by a bug in the 3scale service management API.

Public Class Methods

new(service_id, transaction) click to toggle source
Calls superclass method Xcflushd::Reporter::ReporterError::new
# File lib/xcflushd/reporter.rb, line 28
def initialize(service_id, transaction)
  super(service_id, transaction, '3scale seems to be unreachable.'.freeze)
end