class Bandwidth::Errors::GenericIrisError

Dashboard error class

Attributes

code[R]

@return [String] Error code

http_status[R]

@return [String] Http status code

Public Class Methods

new(code, message, http_status) click to toggle source

@api private

Calls superclass method
# File lib/bandwidth/errors.rb, line 23
def initialize code, message, http_status
  super message
  @code = code
  @http_status = http_status
end