1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/lib/FilesystemException.php
Aaron Piotrowski a8af5a281d Parallel driver
2016-08-30 14:05:14 -05:00

10 lines
243 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);
}
}