Class: InvalidAuthenticationException
- Inherits:
-
Object
- Object
- InvalidAuthenticationException
- Defined in:
- lib/crowd/default.rb
Overview
http://exception.integration.crowd.atlassian.comInvalidAuthenticationException
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) ⇒ InvalidAuthenticationException
constructor
A new instance of InvalidAuthenticationException.
Constructor Details
#initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil) ⇒ InvalidAuthenticationException
Returns a new instance of InvalidAuthenticationException.
224 225 226 227 228 229 |
# File 'lib/crowd/default.rb', line 224 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.
219 220 221 |
# File 'lib/crowd/default.rb', line 219 def cause @cause end |
#messages ⇒ Object
Returns the value of attribute messages.
220 221 222 |
# File 'lib/crowd/default.rb', line 220 def @messages end |
#throwableCount ⇒ Object
Returns the value of attribute throwableCount.
221 222 223 |
# File 'lib/crowd/default.rb', line 221 def throwableCount @throwableCount end |
#throwables ⇒ Object
Returns the value of attribute throwables.
222 223 224 |
# File 'lib/crowd/default.rb', line 222 def throwables @throwables end |