Exception: Hypothesis::MultipleExceptionErrorParent
- Inherits:
-
StandardError
- Object
- StandardError
- Hypothesis::MultipleExceptionErrorParent
- Defined in:
- lib/hypothesis/errors.rb
Overview
:nocov:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#all_exceptions ⇒ Object
readonly
Returns the value of attribute all_exceptions.
Instance Method Summary collapse
-
#initialize(*exceptions) ⇒ MultipleExceptionErrorParent
constructor
A new instance of MultipleExceptionErrorParent.
Constructor Details
#initialize(*exceptions) ⇒ MultipleExceptionErrorParent
Returns a new instance of MultipleExceptionErrorParent.
34 35 36 37 38 |
# File 'lib/hypothesis/errors.rb', line 34 def initialize(*exceptions) super() @all_exceptions = exceptions.to_a end |
Instance Attribute Details
#all_exceptions ⇒ Object (readonly)
Returns the value of attribute all_exceptions.
40 41 42 |
# File 'lib/hypothesis/errors.rb', line 40 def all_exceptions @all_exceptions end |