7677787980818283
return 1.0f; } try { return Float.parseFloat(line); } catch (NumberFormatException nfe) { throw new OryxServingException(Response.Status.BAD_REQUEST, nfe.getMessage()); } }
6768697071727374
protected static void check(boolean condition, Response.Status status, String errorMessage) throws OryxServingException { if (!condition) { throw new OryxServingException(status, errorMessage); } }