14 lines
268 B
PHP
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.');
|
|
}
|
|
}
|