Ignore:
Timestamp:
2016-04-03T14:54:24+02:00 (8 years ago)
Author:
Don-vip
Message:

fix #12705 - catch scripting errors with Java 7 when building invalid overpass API queries

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/OverpassTurboQueryWizard.java

    r9997 r10101  
    6262     * @throws UncheckedParseException when the parsing fails
    6363     */
    64     public String constructQuery(String search) throws UncheckedParseException {
     64    public String constructQuery(String search) {
    6565        try {
    6666            final Object result = ((Invocable) engine).invokeFunction("overpassWizard", search);
     
    7474            throw new IllegalStateException(e);
    7575        } catch (ScriptException e) {
    76             throw new RuntimeException("Failed to execute OverpassTurboQueryWizard", e);
     76            throw new UncheckedParseException("Failed to execute OverpassTurboQueryWizard", e);
    7777        }
    7878    }
Note: See TracChangeset for help on using the changeset viewer.