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