mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
fac9041cac
Changed to match code styles used in other Amp packages.
14 lines
332 B
PHP
14 lines
332 B
PHP
<?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);
|
|
}
|
|
}
|