Package ch.bailu.gtk.glib
Interface UriError
public interface UriError
-
Field Summary
Modifier and TypeFieldDescriptionstatic 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 FAILEDGeneric error if no more specific error is available.
See the error message for details.- See Also:
-
BAD_SCHEME
static final int BAD_SCHEMEThe scheme of a URI could not be parsed.- See Also:
-
BAD_USER
static final int BAD_USERThe user/userinfo of a URI could not be parsed.- See Also:
-
BAD_PASSWORD
static final int BAD_PASSWORDThe password of a URI could not be parsed.- See Also:
-
BAD_AUTH_PARAMS
static final int BAD_AUTH_PARAMSThe authentication parameters of a URI could not be parsed.- See Also:
-
BAD_HOST
static final int BAD_HOSTThe host of a URI could not be parsed.- See Also:
-
BAD_PORT
static final int BAD_PORTThe port of a URI could not be parsed.- See Also:
-
BAD_PATH
static final int BAD_PATHThe path of a URI could not be parsed.- See Also:
-
BAD_QUERY
static final int BAD_QUERYThe query of a URI could not be parsed.- See Also:
-
BAD_FRAGMENT
static final int BAD_FRAGMENTThe fragment of a URI could not be parsed.- See Also:
-