LazyRecord\SQLQueryException::__construct PHP Method

__construct() public method

public __construct ( $dsId, $sql, $args, Exception $e )
$e Exception
    public function __construct($dsId, $sql, $args, Exception $e)
    {
        parent::__construct('SQL Query Error at "' . $dsId . '" data source, Message: ' . $e->getMessage(), 0, $e);
        $this->sql = $sql;
        $this->args = $args;
    }
SQLQueryException