1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/lib/PendingOperationError.php
2018-10-27 10:57:31 -05:00

15 lines
339 B
PHP

<?php
namespace Amp\File;
class PendingOperationError extends \Error
{
public function __construct(
string $message = "The previous file operation must complete before another can be started",
int $code = 0,
\Throwable $previous = null
) {
parent::__construct($message, $code, $previous);
}
}