Class: Dry::Transformer::FunctionNotFoundError
- Defined in:
- lib/dry/transformer/error.rb
Instance Method Summary collapse
-
#initialize(function, source = nil) ⇒ FunctionNotFoundError
constructor
A new instance of FunctionNotFoundError.
Constructor Details
#initialize(function, source = nil) ⇒ FunctionNotFoundError
Returns a new instance of FunctionNotFoundError.
9 10 11 12 13 |
# File 'lib/dry/transformer/error.rb', line 9 def initialize(function, source = nil) return super "No registered function #{source}[:#{function}]" if source super "No globally registered function for #{function}" end |