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