InvalidURIException

Summary

Represents an invalid URI exception.

Description

Represents an invalid URI exception.

Examples

Example of how this exception might be encountered
1
2
3
4
5
6
7
8
9
10
import System;
import System.Exceptions;
import System.Encoding.URI;
 
try {
    decodeURIComponent("%"); // escape character must include full escape sequence
}
catch(InvalidURIException e) {
    Console.error(e);
}

Methods

Share

HTML | BBCode | Direct Link