openclassify/vendor/php-http/client-common/src/Exception/LoopException.php
Mostafa Moradi cd80f0352b initial
2022-03-09 12:57:37 +03:00

17 lines
288 B
PHP

<?php
declare(strict_types=1);
namespace Http\Client\Common\Exception;
use Http\Client\Exception\RequestException;
/**
* Thrown when the Plugin Client detects an endless loop.
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
*/
final class LoopException extends RequestException
{
}