We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ConfigurationException
1 parent 4fef07d commit 808dbc4Copy full SHA for 808dbc4
2 files changed
src/Exception/ConfigurationException.php
@@ -0,0 +1,19 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of the official PHP MCP SDK.
5
+ *
6
+ * A collaboration between Symfony and the PHP Foundation.
7
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
12
+namespace Mcp\Exception;
13
14
+/**
15
+ * @author Oskar Stark <oskarstark@googlemail.com>
16
17
+class ConfigurationException extends InvalidArgumentException
18
+{
19
+}
src/Server/ServerBuilder.php
@@ -21,6 +21,7 @@
21
use Mcp\Capability\Registry;
22
use Mcp\Capability\Registry\Container;
23
use Mcp\Capability\Registry\ReferenceHandler;
24
+use Mcp\Exception\ConfigurationException;
25
use Mcp\JsonRpc\Handler;
26
use Mcp\Schema\Annotations;
27
use Mcp\Schema\Implementation;
0 commit comments