mirror of
https://github.com/danog/file.git
synced 2024-12-02 09:17:57 +01:00
12 lines
245 B
PHP
12 lines
245 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Amp\File;
|
|
|
|
class FilesystemException extends \Exception
|
|
{
|
|
public function __construct(string $message, \Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, 0, $previous);
|
|
}
|
|
}
|