Files
monica/app/Exceptions/RateLimitedSecondException.php

14 lines
209 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
class RateLimitedSecondException extends RuntimeException
{
public function __construct($e)
{
parent::__construct('', 429, $e);
}
}