(String uri, String ssp, int index)
| 419 | } |
| 420 | |
| 421 | private void validateSsp(String uri, String ssp, int index) |
| 422 | throws URISyntaxException { |
| 423 | try { |
| 424 | URIEncoderDecoder.validate(ssp, allLegal); |
| 425 | } catch (URISyntaxException e) { |
| 426 | throw new URISyntaxException(uri, Messages.getString("luni.86", e //$NON-NLS-1$ |
| 427 | .getReason()), index + e.getIndex()); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | private void validateAuthority(String uri, String authority, int index) |
| 432 | throws URISyntaxException { |