Class: InvalidGroupException
- Inherits:
-
Object
- Object
- InvalidGroupException
- Defined in:
- lib/crowd/default.rb
Overview
http://exception.integration.crowd.atlassian.comInvalidGroupException
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) ⇒ InvalidGroupException
constructor
A new instance of InvalidGroupException.
Constructor Details
#initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil) ⇒ InvalidGroupException
Returns a new instance of InvalidGroupException.
284 285 286 287 288 289 |
# File 'lib/crowd/default.rb', line 284 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.
279 280 281 |
# File 'lib/crowd/default.rb', line 279 def cause @cause end |
#messages ⇒ Object
Returns the value of attribute messages.
280 281 282 |
# File 'lib/crowd/default.rb', line 280 def @messages end |
#throwableCount ⇒ Object
Returns the value of attribute throwableCount.
281 282 283 |
# File 'lib/crowd/default.rb', line 281 def throwableCount @throwableCount end |
#throwables ⇒ Object
Returns the value of attribute throwables.
282 283 284 |
# File 'lib/crowd/default.rb', line 282 def throwables @throwables end |