akaunting/app/Exceptions/Common/TooManyEmailsSent.php

15 lines
305 B
PHP
Raw Normal View History

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