Skip to content
Snippets Groups Projects
SeoNotFoundException.php 235 B
Newer Older
<?php

namespace App\Exception;

use RuntimeException;

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