1
0
mirror of https://github.com/danog/postgres.git synced 2025-01-08 05:58:21 +01:00
postgres/lib/PendingOperationError.php

14 lines
332 B
PHP
Raw Normal View History

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