mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
13 lines
215 B
PHP
13 lines
215 B
PHP
<?php
|
|
|
|
namespace Infinito\Exception\NotFound;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
final class EntityNotFoundException extends NotFoundHttpException
|
|
{
|
|
}
|