Class: InvalidCredentialException

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

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil) ⇒ InvalidCredentialException

Returns a new instance of InvalidCredentialException.



299
300
301
302
303
304
# File 'lib/default.rb', line 299

def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
  @cause = cause
  @messages = messages
  @throwableCount = throwableCount
  @throwables = throwables
end

Instance Attribute Details

#causeObject

Returns the value of attribute cause.



294
295
296
# File 'lib/default.rb', line 294

def cause
  @cause
end

#messagesObject

Returns the value of attribute messages.



295
296
297
# File 'lib/default.rb', line 295

def messages
  @messages
end

#throwableCountObject

Returns the value of attribute throwableCount.



296
297
298
# File 'lib/default.rb', line 296

def throwableCount
  @throwableCount
end

#throwablesObject

Returns the value of attribute throwables.



297
298
299
# File 'lib/default.rb', line 297

def throwables
  @throwables
end