constructor()

in src/errors/InvalidSearchParameterError.ts [10:16]


    constructor(message: string) {
        // Node Error class requires passing a string message to the parent class
        super(message);
        Object.setPrototypeOf(this, InvalidSearchParameterError.prototype);
        this.isInvalidSearchParameterError = true;
        this.name = this.constructor.name;
    }