Skip to content
Snippets Groups Projects
RestaurantNotFoundException.php 227 B
Newer Older
<?php

namespace App\Exception;

class RestaurantNotFoundException extends \RuntimeException
{
    public function __construct()
    {
        parent::__construct("Restaurant not found", ErrorCodeEnum::NotFound->value);