mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-06-27 15:25:32 +02:00
10 lines
173 B
PHP
10 lines
173 B
PHP
<?php
|
|
|
|
namespace App\Exception;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
|
|
|
final class SourceAccessDenied extends AccessDeniedHttpException
|
|
{
|
|
}
|