mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
c6e6c32aaf
Dropping strict types so it is not enforced in callbacks provided by application code.
10 lines
216 B
PHP
10 lines
216 B
PHP
<?php
|
|
|
|
namespace Amp\File;
|
|
|
|
class FilesystemException extends \Exception {
|
|
public function __construct(string $message, \Throwable $previous = null) {
|
|
parent::__construct($message, 0, $previous);
|
|
}
|
|
}
|