Exception: Nexpose::APIError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/nexpose/error.rb

Direct Known Subclasses

AuthenticationFailed, PermissionError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(req, reason = '', code = 400) ⇒ APIError

Returns a new instance of APIError.



7
8
9
10
11
# File 'lib/nexpose/error.rb', line 7

def initialize(req, reason = '', code = 400)
  @req    = req
  @reason = reason
  @code   = code
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



5
6
7
# File 'lib/nexpose/error.rb', line 5

def code
  @code
end

#reasonObject

Returns the value of attribute reason.



4
5
6
# File 'lib/nexpose/error.rb', line 4

def reason
  @reason
end

#reqObject

Returns the value of attribute req.



4
5
6
# File 'lib/nexpose/error.rb', line 4

def req
  @req
end

Instance Method Details

#to_sObject



13
14
15
# File 'lib/nexpose/error.rb', line 13

def to_s
  "NexposeAPI: #{@reason}"
end