mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
14 lines
339 B
PHP
14 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);
|
||
|
}
|
||
|
}
|