Exception: VectorMCP::Middleware::InvalidHookTypeError
- Defined in:
- lib/vector_mcp/middleware.rb
Overview
Error raised when invalid hook type is specified
Instance Method Summary collapse
-
#initialize(hook_type) ⇒ InvalidHookTypeError
constructor
A new instance of InvalidHookTypeError.
Constructor Details
#initialize(hook_type) ⇒ InvalidHookTypeError
Returns a new instance of InvalidHookTypeError.
27 28 29 |
# File 'lib/vector_mcp/middleware.rb', line 27 def initialize(hook_type) super("Invalid hook type: #{hook_type}. Valid types: #{HOOK_TYPES.join(", ")}") end |