Exception: Mcp::Tools::Manager::InvalidVersionFormatError
- Inherits:
-
StandardError
- Object
- StandardError
- Mcp::Tools::Manager::InvalidVersionFormatError
- Defined in:
- app/services/mcp/tools/manager.rb
Instance Attribute Summary collapse
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(version) ⇒ InvalidVersionFormatError
constructor
A new instance of InvalidVersionFormatError.
Constructor Details
#initialize(version) ⇒ InvalidVersionFormatError
Returns a new instance of InvalidVersionFormatError.
32 33 34 35 |
# File 'app/services/mcp/tools/manager.rb', line 32 def initialize(version) @version = version super("Invalid semantic version format: #{version}.") end |
Instance Attribute Details
#version ⇒ Object (readonly)
Returns the value of attribute version.
30 31 32 |
# File 'app/services/mcp/tools/manager.rb', line 30 def version @version end |