Merge branch 'master' of github.com:akaunting/akaunting

This commit is contained in:
Cüneyt Şentürk 2022-09-15 14:13:55 +03:00
commit aa47ce09b5

View File

@ -2,9 +2,13 @@
namespace App\Exceptions\Common;
use Illuminate\Http\Exceptions\ThrottleRequestsException;
use RuntimeException;
use Throwable;
class TooManyEmailsSent extends ThrottleRequestsException
class TooManyEmailsSent extends RuntimeException
{
//
public function __construct(string $message = '', int $code = 429, Throwable|null $previous = null)
{
parent::__construct($message, $code, $previous);
}
}