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

namespace App\Exception;

use RuntimeException;

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