Skip to content
Snippets Groups Projects
NewsTypeNotFoundException.php 246 B
Newer Older
<?php

namespace App\Exception;

use RuntimeException;

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