Interface URIErrorConstructor

    interface URIErrorConstructor {
        new URIErrorConstructor(message?: string): URIError;
        new URIErrorConstructor(message?: string, options?: ErrorOptions): URIError;
        new URIErrorConstructor(message?: string): Error;
        new URIErrorConstructor(message?: string, options?: ErrorOptions): Error;
        prototype: URIError;
        (message?: string): URIError;
        (message?: string, options?: ErrorOptions): URIError;
        (message?: string): Error;
        (message?: string, options?: ErrorOptions): Error;
    }
    Hierarchy

    Constructors

    Properties

    Constructors

    Properties

    prototype: URIError