mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized for SPA
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class AllreadyDefinedException extends \Exception
|
||||
{
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
|
||||
|
||||
final class AllreadySetException extends ConflictHttpException
|
||||
{
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class NoValidChoiceException extends \Exception
|
||||
{
|
||||
}
|
11
application/symfony/src/Exception/NotDefinedException.php
Normal file
11
application/symfony/src/Exception/NotDefinedException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class NotDefinedException extends \Exception
|
||||
{
|
||||
public function __construct($message = null)
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
11
application/symfony/src/Exception/NotProcessedException.php
Normal file
11
application/symfony/src/Exception/NotProcessedException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class NotProcessedException extends \Exception
|
||||
{
|
||||
public function __construct($message = null)
|
||||
{
|
||||
parent::__construct($message);
|
||||
}
|
||||
}
|
9
application/symfony/src/Exception/NotSetException.php
Normal file
9
application/symfony/src/Exception/NotSetException.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
|
||||
|
||||
final class NotSetException extends ConflictHttpException
|
||||
{
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class NotSortableException extends \Exception
|
||||
{
|
||||
}
|
7
application/symfony/src/Exception/RecursiveException.php
Normal file
7
application/symfony/src/Exception/RecursiveException.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
final class RecursiveException extends \Exception
|
||||
{
|
||||
}
|
9
application/symfony/src/Exception/SourceAccessDenied.php
Normal file
9
application/symfony/src/Exception/SourceAccessDenied.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exception;
|
||||
|
||||
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||||
|
||||
final class SourceAccessDenied extends AccessDeniedHttpException
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user