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