master

laravel/framework

Last updated at: 29/12/2023 09:21

FileNotFoundException.php

TLDR

This file defines the FileNotFoundException class, which is a subclass of the built-in Exception class in PHP.

Classes

FileNotFoundException

The FileNotFoundException class extends the Exception class and represents an exception that is thrown when a file is not found. It is used to indicate that a file could not be located at a specific path.


<?php

namespace Illuminate\Contracts\Filesystem;

use Exception;

class FileNotFoundException extends Exception
{
    //
}