annotate src/main/java/nl/cwi/monetdb/mcl/connection/MCLException.java @ 102:08bc9009d190 embedded

Merged with default
author Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
date Fri, 13 Jan 2017 18:16:30 +0100 (2017-01-13)
parents src/main/java/nl/cwi/monetdb/mcl/MCLException.java@b9b35ca2eec2 src/main/java/nl/cwi/monetdb/mcl/MCLException.java@1dcb51573c89
children 5b13ccaba741
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
1 /*
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
2 * This Source Code Form is subject to the terms of the Mozilla Public
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
5 *
91
6f74e01c57da Made fixings regarding the null values retrieval. The JDBC embedded connection is working!!! :) Some more testing, optimizations and compilations fixes are still required.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 71
diff changeset
6 * Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V.
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
7 */
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
8
64
bb0d66ad7dc6 More done
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 61
diff changeset
9 package nl.cwi.monetdb.mcl.connection;
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
10
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
11 /**
98
c0ce1ea5075f Some documentation added.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 91
diff changeset
12 * A general purpose Exception class for MCL related problems. This class should be used if no more precise Exception
c0ce1ea5075f Some documentation added.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 91
diff changeset
13 * class exists.
99
1dcb51573c89 Added the remaining documentation.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 98
diff changeset
14 *
1dcb51573c89 Added the remaining documentation.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 98
diff changeset
15 * @author Fabian Groffen
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
16 */
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
17 public class MCLException extends Exception {
61
f1de7262d8d9 First changes to the JDBC driver.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 0
diff changeset
18
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
19 private static final long serialVersionUID = 1L;
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
20
71
4e2a2a81cc6a Some parsing successful on the old mapi. About to start testing table result sets.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 68
diff changeset
21 public MCLException(String e) {
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
22 super(e);
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
23 }
61
f1de7262d8d9 First changes to the JDBC driver.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 0
diff changeset
24
71
4e2a2a81cc6a Some parsing successful on the old mapi. About to start testing table result sets.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 68
diff changeset
25 public MCLException(Throwable t) {
61
f1de7262d8d9 First changes to the JDBC driver.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 0
diff changeset
26 super(t);
f1de7262d8d9 First changes to the JDBC driver.
Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
parents: 0
diff changeset
27 }
0
a5a898f6886c Copy of MonetDB java directory changeset e6e32756ad31.
Sjoerd Mullender <sjoerd@acm.org>
parents:
diff changeset
28 }