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