Exception: InfraForge::AuthError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/infraforge.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, pending: false) ⇒ AuthError

Returns a new instance of AuthError.



25
26
27
28
# File 'lib/infraforge.rb', line 25

def initialize(message, pending: false)
  super(message)
  @pending = pending
end

Instance Attribute Details

#pendingObject (readonly)

Returns the value of attribute pending.



23
24
25
# File 'lib/infraforge.rb', line 23

def pending
  @pending
end