Skip to content
Prompty

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
Name Type Description
message string Human-readable error message
component string The pipeline component type that was being looked up (e.g., ‘renderer’, ‘parser’, ‘executor’, ‘processor’)
key string The registration key that was not found