Exception: Hypothesis::MultipleExceptionErrorParent

Inherits:
StandardError
  • Object
show all
Defined in:
lib/hypothesis/errors.rb

Overview

:nocov:

Direct Known Subclasses

MultipleExceptionError

Instance Attribute Summary collapse

Instance Method Summary collapse

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_exceptionsObject (readonly)

Returns the value of attribute all_exceptions.



40
41
42
# File 'lib/hypothesis/errors.rb', line 40

def all_exceptions
  @all_exceptions
end