proofdb/vendor/illuminate/http/Client/StrayRequestException.php
2026-05-01 23:40:14 +08:00

14 lines
268 B
PHP

<?php
namespace Illuminate\Http\Client;
use RuntimeException;
class StrayRequestException extends RuntimeException
{
public function __construct(string $uri)
{
parent::__construct('Attempted request to ['.$uri.'] without a matching fake.');
}
}