URIException

This Exception is thrown if something goes wrong when encoding or decoding a URI.

Mixed In Members

From mixin basicExceptionCtors

this
this(string msg, string file, size_t line, Throwable next)
this
this(string msg, Throwable next, string file, size_t line)

Examples

import std.exception : assertThrown;
assertThrown!URIException("%ab".decode);

Meta