refactor: incrementation consistency
[poolifier.git] / src / worker / cluster-worker.ts
index 180a5273f464cfee65f5a4b0d6d4f1a8032200fc..c43e7f75a7586d2b2a9fa6633eea7da6e44697bf 100644 (file)
@@ -52,9 +52,4 @@ export class ClusterWorker<
   protected sendToMainWorker (message: MessageValue<Response>): void {
     this.getMainWorker().send(message)
   }
-
-  /** @inheritDoc */
-  protected handleError (e: Error | string): string {
-    return e instanceof Error ? e.message : e
-  }
 }