Changeset 7091


Ignore:
Timestamp:
11/15/16 22:32:21 (8 years ago)
Author:
Oliver Schonefeld
Message:
  • fix error message
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/parser/QueryParser.java

    r7090 r7091  
    880880                } catch (IllegalArgumentException e) {
    881881                    throw new ExpressionTreeBuilderException(
    882                             "invalid codepoint: 0x" +
     882                            "invalid codepoint: U+" +
    883883                                    Integer.toHexString(cp).toUpperCase());
    884884                }
     
    905905            } catch (IllegalArgumentException e) {
    906906                throw new ExpressionTreeBuilderException(
    907                         "invalid codepoint: 0x" +
     907                        "invalid codepoint: U+" +
    908908                                Integer.toHexString(cp).toUpperCase());
    909909            }
Note: See TracChangeset for help on using the changeset viewer.