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

namespace App\Exception;

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