Class: InvalidCredentialException
- Inherits:
-
Object
- Object
- InvalidCredentialException
- Defined in:
- lib/crowd/default.rb
Overview
http://exception.integration.crowd.atlassian.comInvalidCredentialException
Instance Attribute Summary collapse
-
#cause ⇒ Object
Returns the value of attribute cause.
-
#messages ⇒ Object
Returns the value of attribute messages.
-
#throwableCount ⇒ Object
Returns the value of attribute throwableCount.
-
#throwables ⇒ Object
Returns the value of attribute throwables.
Instance Method Summary collapse
-
#initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil) ⇒ InvalidCredentialException
constructor
A new instance of InvalidCredentialException.
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/crowd/default.rb', line 299 def initialize(cause = nil, = nil, throwableCount = nil, throwables = nil) @cause = cause @messages = @throwableCount = throwableCount @throwables = throwables end |
Instance Attribute Details
#cause ⇒ Object
Returns the value of attribute cause.
294 295 296 |
# File 'lib/crowd/default.rb', line 294 def cause @cause end |
#messages ⇒ Object
Returns the value of attribute messages.
295 296 297 |
# File 'lib/crowd/default.rb', line 295 def @messages end |
#throwableCount ⇒ Object
Returns the value of attribute throwableCount.
296 297 298 |
# File 'lib/crowd/default.rb', line 296 def throwableCount @throwableCount end |
#throwables ⇒ Object
Returns the value of attribute throwables.
297 298 299 |
# File 'lib/crowd/default.rb', line 297 def throwables @throwables end |