8 lines
183 B
PHP
8 lines
183 B
PHP
<?php
|
|
|
|
namespace App\Domains\Ticket\Exceptions;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
class TicketNotAvailableException extends NotFoundHttpException {}
|