mercureact/src/Http/Exception/SecurityException.php

11 lines
189 B
PHP
Raw Normal View History

2024-03-10 02:06:19 +00:00
<?php
namespace NoccyLabs\Mercureact\Http\Exeption;
use Exception;
class SecurityException extends Exception
{
const ERR_ACCESS_DENIED = 50001;
2024-03-10 15:23:46 +00:00
const ERR_NO_PERMISSION = 50002;
2024-03-10 02:06:19 +00:00
}