Class: InvalidPrincipalException

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

Returns a new instance of InvalidPrincipalException.



314
315
316
317
318
319
# File 'lib/default.rb', line 314

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.



309
310
311
# File 'lib/default.rb', line 309

def cause
  @cause
end

#messagesObject

Returns the value of attribute messages.



310
311
312
# File 'lib/default.rb', line 310

def messages
  @messages
end

#throwableCountObject

Returns the value of attribute throwableCount.



311
312
313
# File 'lib/default.rb', line 311

def throwableCount
  @throwableCount
end

#throwablesObject

Returns the value of attribute throwables.



312
313
314
# File 'lib/default.rb', line 312

def throwables
  @throwables
end