Class: InactiveAccountException

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) ⇒ InactiveAccountException

Returns a new instance of InactiveAccountException.



329
330
331
332
333
334
# File 'lib/default.rb', line 329

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.



324
325
326
# File 'lib/default.rb', line 324

def cause
  @cause
end

#messagesObject

Returns the value of attribute messages.



325
326
327
# File 'lib/default.rb', line 325

def messages
  @messages
end

#throwableCountObject

Returns the value of attribute throwableCount.



326
327
328
# File 'lib/default.rb', line 326

def throwableCount
  @throwableCount
end

#throwablesObject

Returns the value of attribute throwables.



327
328
329
# File 'lib/default.rb', line 327

def throwables
  @throwables
end