1
0
mirror of https://github.com/danog/file.git synced 2025-01-23 05:41:18 +01:00
file/lib/FilesystemException.php

10 lines
243 B
PHP
Raw Normal View History

2016-08-24 00:01:41 -05:00
<?php declare(strict_types = 1);
2015-08-08 10:09:07 -04:00
namespace Amp\File;
2016-08-30 14:05:14 -05:00
class FilesystemException extends \Exception {
public function __construct(string $message, \Throwable $previous = null) {
parent::__construct($message, 0, $previous);
}
}