summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorJames Moger <james.moger@gmail.com>2011-08-05 15:18:02 -0400
committerJames Moger <james.moger@gmail.com>2011-08-05 15:18:02 -0400
commitfadd154d137481ee7d4c394131ce0d2c4803d4e7 (patch)
treecc5aaa76345637c904fb654cfe4e011ea020b906 /src/com
parentb865898879f0d0eb1e752b41562b463b0c31c517 (diff)
downloadiciql-fadd154d137481ee7d4c394131ce0d2c4803d4e7.tar.gz
iciql-fadd154d137481ee7d4c394131ce0d2c4803d4e7.zip
Documentation. Don't double-wrap IciqlException.
Diffstat (limited to 'src/com')
-rw-r--r--src/com/iciql/Query.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/iciql/Query.java b/src/com/iciql/Query.java
index 0611ffa..b6018ea 100644
--- a/src/com/iciql/Query.java
+++ b/src/com/iciql/Query.java
@@ -231,6 +231,8 @@ public class Query<T> {
value = (X) o;
}
result.add(value);
+ } catch (IciqlException e) {
+ throw e;
} catch (Exception e) {
throw new IciqlException(e);
}