Interface UriError


public interface UriError
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The authentication parameters of a URI could not be parsed.
    static final int
    The fragment of a URI could not be parsed.
    static final int
    The host of a URI could not be parsed.
    static final int
    The password of a URI could not be parsed.
    static final int
    The path of a URI could not be parsed.
    static final int
    The port of a URI could not be parsed.
    static final int
    The query of a URI could not be parsed.
    static final int
    The scheme of a URI could not be parsed.
    static final int
    The user/userinfo of a URI could not be parsed.
    static final int
    Generic error if no more specific error is available.
  • Field Details

    • FAILED

      static final int FAILED
      Generic error if no more specific error is available.
      See the error message for details.
      See Also:
    • BAD_SCHEME

      static final int BAD_SCHEME
      The scheme of a URI could not be parsed.
      See Also:
    • BAD_USER

      static final int BAD_USER
      The user/userinfo of a URI could not be parsed.
      See Also:
    • BAD_PASSWORD

      static final int BAD_PASSWORD
      The password of a URI could not be parsed.
      See Also:
    • BAD_AUTH_PARAMS

      static final int BAD_AUTH_PARAMS
      The authentication parameters of a URI could not be parsed.
      See Also:
    • BAD_HOST

      static final int BAD_HOST
      The host of a URI could not be parsed.
      See Also:
    • BAD_PORT

      static final int BAD_PORT
      The port of a URI could not be parsed.
      See Also:
    • BAD_PATH

      static final int BAD_PATH
      The path of a URI could not be parsed.
      See Also:
    • BAD_QUERY

      static final int BAD_QUERY
      The query of a URI could not be parsed.
      See Also:
    • BAD_FRAGMENT

      static final int BAD_FRAGMENT
      The fragment of a URI could not be parsed.
      See Also: