1
0
mirror of https://github.com/chylex/Lightning-Tracker.git synced 2025-01-15 04:42:48 +01:00
Lightning-Tracker/src/Session/PermissionException.php

16 lines
296 B
PHP

<?php
declare(strict_types = 1);
namespace Session;
use Exception;
use Throwable;
final class PermissionException extends Exception{
public function __construct(string $permission, int $code = 0, Throwable $previous = null){
parent::__construct($permission, $code, $previous);
}
}
?>