Liking cljdoc? Tell your friends :D

jdk.net.URISyntaxException

Checked exception thrown to indicate that a string could not be parsed as a URI reference.

Checked exception thrown to indicate that a string could not be parsed as a
URI reference.
raw docstring

->uri-syntax-exceptionclj

(->uri-syntax-exception input reason)
(->uri-syntax-exception input reason index)

Constructor.

Constructs an instance from the given input string, reason, and error index.

input - The input string - java.lang.String reason - A string explaining why the input could not be parsed - java.lang.String index - The index at which the parse error occurred, or -1 if the index is not known - int

throws: java.lang.NullPointerException - If either the input or reason strings are null

Constructor.

Constructs an instance from the given input string, reason, and error
 index.

input - The input string - `java.lang.String`
reason - A string explaining why the input could not be parsed - `java.lang.String`
index - The index at which the parse error occurred, or -1 if the index is not known - `int`

throws: java.lang.NullPointerException - If either the input or reason strings are null
raw docstring

get-indexclj

(get-index this)

Returns an index into the input string of the position at which the parse error occurred, or -1 if this position is not known.

returns: The error index - int

Returns an index into the input string of the position at which the
 parse error occurred, or -1 if this position is not known.

returns: The error index - `int`
raw docstring

get-inputclj

(get-input this)

Returns the input string.

returns: The input string - java.lang.String

Returns the input string.

returns: The input string - `java.lang.String`
raw docstring

get-messageclj

(get-message this)

Returns a string describing the parse error. The resulting string consists of the reason string followed by a colon character (':'), a space, and the input string. If the error index is defined then the string " at index " followed by the index, in decimal, is inserted after the reason string and before the colon character.

returns: A string describing the parse error - java.lang.String

Returns a string describing the parse error.  The resulting string
 consists of the reason string followed by a colon character
 (':'), a space, and the input string.  If the error index is
 defined then the string " at index " followed by the index, in
 decimal, is inserted after the reason string and before the colon
 character.

returns: A string describing the parse error - `java.lang.String`
raw docstring

get-reasonclj

(get-reason this)

Returns a string explaining why the input string could not be parsed.

returns: The reason string - java.lang.String

Returns a string explaining why the input string could not be parsed.

returns: The reason string - `java.lang.String`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close