Merge "QueryBuilder: Remove special handling of QueryParseException"
This commit is contained in:
commit
2621d651b4
@ -370,9 +370,6 @@ public abstract class QueryBuilder<T> {
|
|||||||
} catch (IllegalAccessException e) {
|
} catch (IllegalAccessException e) {
|
||||||
throw error("Error in operator " + name + ":" + value, e);
|
throw error("Error in operator " + name + ":" + value, e);
|
||||||
} catch (InvocationTargetException e) {
|
} catch (InvocationTargetException e) {
|
||||||
if (e.getCause() instanceof QueryParseException) {
|
|
||||||
throw (QueryParseException) e.getCause();
|
|
||||||
}
|
|
||||||
throw error("Error in operator " + name + ":" + value, e.getCause());
|
throw error("Error in operator " + name + ":" + value, e.getCause());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user