/** * WaitingChildrenError * * Error to be thrown when job is moved to waiting-children state * from job in active state. * */ export class WaitingChildrenError extends Error { constructor(message) { super(message); this.name = this.constructor.name; Object.setPrototypeOf(this, new.target.prototype); } } //# sourceMappingURL=waiting-children-error.js.map