Lines Matching refs:MalformedURIException

69   public static class MalformedURIException extends IOException {
75 * Constructs a <code>MalformedURIException</code> with no specified
78 public MalformedURIException() {
83 * Constructs a <code>MalformedURIException</code> with the
88 public MalformedURIException(String p_msg) {
271 * @exception MalformedURIException if p_uriSpec violates any syntax
274 public URI(String p_uriSpec) throws MalformedURIException {
294 * @exception MalformedURIException if p_uriSpec violates any syntax
297 public URI(String p_uriSpec, boolean allowNonAbsoluteURI) throws MalformedURIException {
310 * @exception MalformedURIException if p_uriSpec violates any syntax
313 public URI(URI p_base, String p_uriSpec) throws MalformedURIException {
331 * @exception MalformedURIException if p_uriSpec violates any syntax
334 public URI(URI p_base, String p_uriSpec, boolean allowNonAbsoluteURI) throws MalformedURIException {
347 * @exception MalformedURIException if p_scheme violates any
351 throws MalformedURIException {
353 throw new MalformedURIException(
358 throw new MalformedURIException(
383 * @exception MalformedURIException if any of the parameters violates
388 throws MalformedURIException {
414 * @exception MalformedURIException if any of the parameters violates
420 throws MalformedURIException {
422 throw new MalformedURIException("Scheme is required!");
427 throw new MalformedURIException(
431 throw new MalformedURIException(
438 throw new MalformedURIException(
443 throw new MalformedURIException(
487 * @exception MalformedURIException if p_base is null and p_uriSpec
492 throws MalformedURIException {
502 throw new MalformedURIException("Cannot initialize URI with empty parameters.");
526 throw new MalformedURIException("No scheme found in URI.");
535 throw new MalformedURIException("Scheme specific part cannot be empty.");
540 throw new MalformedURIException("No scheme found in URI.");
606 * @exception MalformedURIException if p_base is null and p_uriSpec
611 throws MalformedURIException {
617 throw new MalformedURIException(
642 throw new MalformedURIException("No scheme found in URI.");
651 throw new MalformedURIException("Scheme specific part cannot be empty.");
656 throw new MalformedURIException("No scheme found in URI.");
840 * @exception MalformedURIException if URI does not have a conformant
844 throws MalformedURIException {
861 throw new MalformedURIException("No scheme found in URI.");
937 throw new MalformedURIException(
1064 * @exception MalformedURIException if p_uriSpec violates syntax rules
1067 throws MalformedURIException {
1069 throw new MalformedURIException(
1094 throw new MalformedURIException(
1105 throw new MalformedURIException(
1127 throw new MalformedURIException(
1138 throw new MalformedURIException(
1160 throw new MalformedURIException(
1166 throw new MalformedURIException(
1185 throw new MalformedURIException(
1191 throw new MalformedURIException(
1396 * @exception MalformedURIException if p_scheme is not a conformant
1399 public void setScheme(String p_scheme) throws MalformedURIException {
1401 throw new MalformedURIException(
1405 throw new MalformedURIException("The scheme is not conformant.");
1417 * @exception MalformedURIException if p_userinfo contains invalid
1420 public void setUserinfo(String p_userinfo) throws MalformedURIException {
1427 throw new MalformedURIException(
1442 throw new MalformedURIException(
1447 throw new MalformedURIException(
1465 * @exception MalformedURIException if p_host is not a valid IP
1468 public void setHost(String p_host) throws MalformedURIException {
1479 throw new MalformedURIException("Host is not a well formed address!");
1493 * @exception MalformedURIException if p_port is not -1 and not a
1496 public void setPort(int p_port) throws MalformedURIException {
1499 throw new MalformedURIException(
1504 throw new MalformedURIException("Invalid port number!");
1517 * @exception MalformedURIException it authority is not a
1521 throws MalformedURIException {
1532 throw new MalformedURIException("Registry based authority is not well formed.");
1551 * @exception MalformedURIException if p_path contains invalid
1554 public void setPath(String p_path) throws MalformedURIException {
1575 * @exception MalformedURIException if p_addToPath contains syntax
1579 throws MalformedURIException {
1585 throw new MalformedURIException(
1622 * @exception MalformedURIException if p_queryString is not null and this
1626 public void setQueryString(String p_queryString) throws MalformedURIException {
1631 throw new MalformedURIException(
1635 throw new MalformedURIException(
1639 throw new MalformedURIException(
1654 * @exception MalformedURIException if p_fragment is not null and this
1658 public void setFragment(String p_fragment) throws MalformedURIException {
1663 throw new MalformedURIException(
1667 throw new MalformedURIException(
1671 throw new MalformedURIException(