Пример #1
0
 private static Match compileMatch(String match) throws Exception {
   try {
     return SearchCompiler.compile(match);
   } catch (Exception e) {
     throw new Exception("can't compile expression for: " + match, e);
   }
 }