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

12 lines
247 B
PHP

<?php
namespace Illuminate\Http\Client;
class BatchInProgressException extends HttpClientException
{
public function __construct()
{
parent::__construct('You cannot add requests to a batch that is already in progress.');
}
}