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

14 lines
339 B
PHP
Raw Normal View History

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