From 2762ad626ae7c18006df4cfc86dcf85035c467b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 7 Mar 2024 18:04:02 +0100 Subject: [PATCH] refactor: refine error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/Bootstrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index 40d451ed..faa29e68 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -539,7 +539,7 @@ export class Bootstrap extends EventEmitter { ): Promise { if (!this.started && !this.starting) { throw new BaseError( - 'Cannot add charging station while charging stations simulator is not started' + 'Cannot add charging station while the charging stations simulator is not started' ) } await this.workerImplementation?.addElement({ -- 2.34.1