Files
torsearch/src/Torrentio/Exception/TorrentioRateLimitException.php

12 lines
225 B
PHP

<?php
namespace App\Torrentio\Exception;
class TorrentioRateLimitException extends \Exception
{
public function __construct()
{
parent::__construct(sprintf("[TorrentioClient] Rate limit exceeded"));
}
}