AzuraCast/src/Exception/CsrfValidationException.php

22 lines
440 B
PHP

<?php
declare(strict_types=1);
namespace App\Exception;
use App\Exception;
use Monolog\Level;
use Throwable;
final class CsrfValidationException extends Exception
{
public function __construct(
string $message = 'CSRF Validation Error',
int $code = 0,
Throwable $previous = null,
Level $loggerLevel = Level::Info
) {
parent::__construct($message, $code, $previous, $loggerLevel);
}
}