Exception: VectorMCP::Middleware::InvalidHookTypeError

Inherits:
Error
  • Object
show all
Defined in:
lib/vector_mcp/middleware.rb

Overview

Error raised when invalid hook type is specified

Instance Method Summary collapse

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