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

namespace App\Exception;

use RuntimeException;

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