24.187. URIError: thrown by URI encoding and decoding methods
ECMAScript v3: Object Error URIError
24.187.1. Constructor
new URIError( ) new URIError(message)
24.187.1.1. Arguments
message
An optional error message that provides details about the exception. If specified, this argument is used as the value for the message property of the URIError object.
24.187.1.2. Returns
A newly constructed URIError object. If the message argument is specified, the Error object uses it as the value of its message property; otherwise, it uses an implementation-defined default string as the value of that property. When the URIError( ) constructor is called as a function without the new operator, it behaves just as it does when called with the new operator.
24.187.2. Properties
message
An error message that provides details about the exception. This property holds the string passed to the constructor, or an implementation-defined default string. See Error.message for details.
name
A string that specifies the type of the exception. All URIError objects inherit the value "URIError" for this property.
24.187.3. Description
An instance of the URIError class is thrown by decodeURI( ) and decodeURIComponent( ) if the specified string contains illegal hexadecimal escapes. It can also be thrown by encodeURI( ) and encodeURIComponent( ) if the specified string contains illegal Unicode surrogate pairs. See Error for details about throwing and catching exceptions.