mirror of
https://github.com/danog/file.git
synced 2024-11-30 04:19:39 +01:00
a13bb6f721
This commit also changes end() to wait for the close() to finish before returning.
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
namespace Amp\File;
|
|
|
|
use Amp\ByteStream\StreamException;
|
|
|
|
class FilesystemException extends StreamException {
|
|
public function __construct(string $message, \Throwable $previous = null) {
|
|
parent::__construct($message, 0, $previous);
|
|
}
|
|
}
|