1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/src/FilesystemException.php
2022-12-17 15:52:21 -06:00

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);
}
}