1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-03 09:57:48 +01:00
postgres/lib/ParseException.php

11 lines
284 B
PHP
Raw Normal View History

2017-12-17 22:51:40 +01:00
<?php
namespace Amp\Postgres;
class ParseException extends FailureException {
public function __construct(string $message = '') {
$message = "Parse error while splitting array" . (($message === '') ? '' : ": " . $message);
parent::__construct($message);
}
}