Class: Dry::Types::UnknownKeysError
- Inherits:
-
SchemaKeyError
- Object
- Dry::Types::UnknownKeysError
- Defined in:
- lib/dry/types/errors.rb
Instance Method Summary collapse
-
#initialize(*keys) ⇒ UnknownKeysError
constructor
A new instance of UnknownKeysError.
Constructor Details
#initialize(*keys) ⇒ UnknownKeysError
Returns a new instance of UnknownKeysError.
29 30 31 |
# File 'lib/dry/types/errors.rb', line 29 def initialize(*keys) super("unexpected keys #{keys.inspect} in Hash input") end |