1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/lib/FilesystemException.php

10 lines
216 B
PHP
Raw Normal View History

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