Skip to content
Snippets Groups Projects
RestaurantTypeNotFoundException.php 258 B
Newer Older
<?php

namespace App\Exception;

use RuntimeException;

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