We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aarongrtech/laravel-ascend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ConfigException.php•606 B
<?php
declare(strict_types=1);
namespace GoldenPathDigital\LaravelAscend\Exceptions;
use RuntimeException;
class ConfigException extends RuntimeException
{
public static function fileNotFound(string $path): self
{
return new self(sprintf('Configuration file not found: %s', $path));
}
public static function invalidKey(string $key): self
{
return new self(sprintf('Invalid configuration key: %s', $key));
}
public static function loadFailed(string $reason): self
{
return new self(sprintf('Failed to load configuration: %s', $reason));
}
}