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