12 lines
225 B
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"));
|
|
}
|
|
}
|