TaoLer/vendor/league/flysystem/src/FilesystemNotFoundException.php

13 lines
215 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
namespace League\Flysystem;
use LogicException;
/**
* Thrown when the MountManager cannot find a filesystem.
*/
2020-01-07 14:29:33 +08:00
class FilesystemNotFoundException extends LogicException implements FilesystemException
2020-01-01 13:17:19 +08:00
{
}