1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-02 09:27:54 +01:00
postgres/lib/ParseException.php
2017-12-17 15:51:40 -06:00

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