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

12 lines
220 B
PHP
Raw Normal View History

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