4344454647484950
if (DAVParser.nextItem(raw, ps2) >= 0) { this.url = ps2.toString(raw).trim(); } } if ((status == -1) || (url == null)) { throw new HttpInvalidValueException("Invalid Status-URI"); } }
25262728293031
*/ protected static void error(String mth, String msg) throws HttpInvalidValueException { throw new HttpInvalidValueException(mth+": "+msg); }
129130131132133134135136137
throws HttpInvalidValueException { int idx1 = encoded.indexOf('<'); int idx2 = encoded.indexOf('>'); if (idx1 == -1 || idx2 == -1) { throw new HttpInvalidValueException(encoded); } return encoded.substring(idx1+1, idx2); }
143144145146147148149150151
throws HttpInvalidValueException { int idx1 = encoded.indexOf('['); int idx2 = encoded.indexOf(']'); if (idx1 == -1 || idx2 == -1) { throw new HttpInvalidValueException(encoded); } return encoded.substring(idx1+1, idx2); }