<?php

namespace App\Exception;

use RuntimeException;

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