mirror of
https://github.com/danog/postgres.git
synced 2024-12-02 09:27:54 +01:00
11 lines
284 B
PHP
11 lines
284 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
class ParseException extends FailureException {
|
|
public function __construct(string $message = '') {
|
|
$message = "Parse error while splitting array" . (($message === '') ? '' : ": " . $message);
|
|
parent::__construct($message);
|
|
}
|
|
}
|