mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-08-22 20:59:19 +00:00
12 lines
225 B
PHP
12 lines
225 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace League\Flysystem;
|
|
|
|
use InvalidArgumentException as BaseInvalidArgumentException;
|
|
|
|
class InvalidStreamProvided extends BaseInvalidArgumentException implements FilesystemException
|
|
{
|
|
}
|