class Fluffy::APIError

Attributes

code[R]

@return [Integer] HTTP error code

error[R]

@return [String] Reason for error message

Public Class Methods

new(msg, error, code) click to toggle source
Calls superclass method
# File lib/fluffy/exceptions.rb, line 8
def initialize(msg, error, code)
  @code = code
  @error = error

  super(msg)
end