Skip to content
Snippets Groups Projects
NewsNotFoundException.php 219 B
Newer Older
<?php

namespace App\Exception;

class NewsNotFoundException extends \RuntimeException
{
    public function __construct()
    {
        parent::__construct("News not found", NewsExceptionEnum::NotFound->value);
    }
}