constructor()

in src/errors/TooManyConcurrentExportRequestsError.ts [9:15]


    constructor(message = 'Too Many Concurrent Export Requests') {
        // Node Error class requires passing a string message to the parent class
        super(message);
        Object.setPrototypeOf(this, TooManyConcurrentExportRequestsError.prototype);
        this.isTooManyConcurrentExportRequestsError = true;
        this.name = this.constructor.name;
    }