Files
apimacro/vendor/league/flysystem/src/FilesystemNotFoundException.php
2024-08-13 13:44:16 +00:00

13 lines
215 B
PHP
Executable File

<?php
namespace League\Flysystem;
use LogicException;
/**
* Thrown when the MountManager cannot find a filesystem.
*/
class FilesystemNotFoundException extends LogicException implements FilesystemException
{
}