Skip to content

InvokerError

Raised when no invoker implementation is registered for a given component and key. For example, if no renderer is registered for the key “jinja2”, an InvokerError is raised.

---
title: InvokerError
config:
  look: handDrawn
  theme: colorful
  class:
    hideEmptyMembersBox: true
---
classDiagram
    class InvokerError {
        +string message
        +string component
        +string key
    }
message: "No renderer registered for key: jinja2"
component: renderer
key: jinja2
NameTypeDescription
messagestringHuman-readable error message
componentstringThe pipeline component type that was being looked up (e.g., ‘renderer’, ‘parser’, ‘executor’, ‘processor’)
keystringThe registration key that was not found