Optimized for SPA

This commit is contained in:
Kevin Frantz
2019-01-05 23:52:37 +01:00
parent 9e685260e9
commit bccd6efaff
393 changed files with 253 additions and 37 deletions

View File

@@ -0,0 +1,7 @@
<?php
namespace App\Exception;
final class AllreadyDefinedException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exception;
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
final class AllreadySetException extends ConflictHttpException
{
}

View File

@@ -0,0 +1,7 @@
<?php
namespace App\Exception;
final class NoValidChoiceException extends \Exception
{
}

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Exception;
final class NotDefinedException extends \Exception
{
public function __construct($message = null)
{
parent::__construct($message);
}
}

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Exception;
final class NotProcessedException extends \Exception
{
public function __construct($message = null)
{
parent::__construct($message);
}
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exception;
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
final class NotSetException extends ConflictHttpException
{
}

View File

@@ -0,0 +1,7 @@
<?php
namespace App\Exception;
final class NotSortableException extends \Exception
{
}

View File

@@ -0,0 +1,7 @@
<?php
namespace App\Exception;
final class RecursiveException extends \Exception
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Exception;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
final class SourceAccessDenied extends AccessDeniedHttpException
{
}