Exception: GraphQL::FragmentCache::WriteMultiError
- Inherits:
-
StandardError
- Object
- StandardError
- GraphQL::FragmentCache::WriteMultiError
- Defined in:
- lib/graphql/fragment_cache/cacher.rb
Instance Attribute Summary collapse
-
#original_error ⇒ Object
readonly
Returns the value of attribute original_error.
-
#values ⇒ Object
readonly
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(original_error, values) ⇒ WriteMultiError
constructor
A new instance of WriteMultiError.
Constructor Details
#initialize(original_error, values) ⇒ WriteMultiError
Returns a new instance of WriteMultiError.
22 23 24 25 26 27 |
# File 'lib/graphql/fragment_cache/cacher.rb', line 22 def initialize(original_error, values) @original_error = original_error @values = values super(original_error.) end |
Instance Attribute Details
#original_error ⇒ Object (readonly)
Returns the value of attribute original_error.
20 21 22 |
# File 'lib/graphql/fragment_cache/cacher.rb', line 20 def original_error @original_error end |
#values ⇒ Object (readonly)
Returns the value of attribute values.
20 21 22 |
# File 'lib/graphql/fragment_cache/cacher.rb', line 20 def values @values end |