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

12 lines
245 B
PHP
Raw Permalink Normal View History

2022-12-17 22:52:21 +01:00
<?php declare(strict_types=1);
2015-08-08 16:09:07 +02:00
namespace Amp\File;
class FilesystemException extends \Exception
{
public function __construct(string $message, \Throwable $previous = null)
{
2016-08-30 21:05:14 +02:00
parent::__construct($message, 0, $previous);
}
}