Skip to content

Commit

Permalink
Merge remote branch 'jboyens/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer committed Jul 8, 2010
2 parents 64ee344 + 9da6e4d commit 96f0ba9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/scala/com/twitter/querulous/query/SqlQuery.scala
Expand Up @@ -109,6 +109,7 @@ class SqlQuery(connection: Connection, query: String, params: Any*) extends Quer
m.appendReplacement(result, questionMarks) m.appendReplacement(result, questionMarks)
} catch { } catch {
case e: ArrayIndexOutOfBoundsException => throw new TooFewQueryParametersException case e: ArrayIndexOutOfBoundsException => throw new TooFewQueryParametersException
case e: NoSuchElementException => throw new TooFewQueryParametersException
} }
i += 1 i += 1
} }
Expand Down

0 comments on commit 96f0ba9

Please sign in to comment.