akaunting/app/Exceptions/Common/TooManyEmailsSent.php

15 lines
305 B
PHP
Raw Normal View History

2022-09-14 11:53:22 +03:00
<?php
namespace App\Exceptions\Common;
2022-09-15 11:34:24 +03:00
use RuntimeException;
use Throwable;
2022-09-14 11:53:22 +03:00
2022-09-15 11:34:24 +03:00
class TooManyEmailsSent extends RuntimeException
2022-09-14 11:53:22 +03:00
{
2022-09-15 11:34:24 +03:00
public function __construct(string $message = '', int $code = 429, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
2022-09-14 11:53:22 +03:00
}