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