mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-22 19:19:09 -04:00
13 lines
184 B
PHP
13 lines
184 B
PHP
<?php
|
|
|
|
namespace League\Flysystem;
|
|
|
|
use LogicException;
|
|
|
|
/**
|
|
* Thrown when the MountManager cannot find a filesystem.
|
|
*/
|
|
class FilesystemNotFoundException extends LogicException
|
|
{
|
|
}
|