UriSyntaxException

class UriSyntaxException(val input: String, internalReason: String, val index: Int = -1) : Exception

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

Constructors

Link copied to clipboard
constructor(input: String, internalReason: String, index: Int = -1)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
val index: Int

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

Link copied to clipboard

The input string.

Link copied to clipboard
open override val message: String
Link copied to clipboard