Fix error handling at OCPP message sending
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerUtils.ts
index a181d80e205a2d6050e0f148311846d9a38db97a..00feba445ff939cbc933eac0daf1a12fc0cfb4c4 100644 (file)
@@ -1,6 +1,10 @@
 import chalk from 'chalk';
 
 export class WorkerUtils {
+  private constructor() {
+    // This is intentional
+  }
+
   public static defaultExitHandler = (code: number): void => {
     if (code !== 0) {
       console.error(chalk.red(`Worker stopped with exit code ${code}`));