8182838485868788899091
if (matcher.matches(intToLong(jsonPathResult))) { return true; } else { throw new RuntimeJsonTypeMismatchException("JSONpath returned a type unsuitable for matching with the given matcher: " + cce.getMessage(), cce); } }
96979899100101102103104105106
int i; try { i = (Integer) o; } catch (ClassCastException cce) { throw new RuntimeJsonTypeMismatchException("JSONpath returned a type unsuitable for matching with the given matcher: " + cce.getMessage(), cce); } return i; }