Improve OCPP error handling, fix performance storage default file path
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPError.ts
index b977062a0957d568180ba9225bfb4fa3f49fcc02..ed77d54c22fa3446677a96d2328ced2629d26c8f 100644 (file)
@@ -1,16 +1,19 @@
+import { IncomingRequestCommand, RequestCommand } from '../../types/ocpp/Requests';
+
 import { ErrorType } from '../../types/ocpp/ErrorType';
-import { IncomingRequestCommand } from '../../types/ocpp/Requests';
 
 export default class OCPPError extends Error {
   code: ErrorType | IncomingRequestCommand;
+  command?: RequestCommand | IncomingRequestCommand;
   details?: unknown;
 
-  constructor(code: ErrorType | IncomingRequestCommand, message: string, details?: unknown) {
+  constructor(code: ErrorType | IncomingRequestCommand, message: string, command?: RequestCommand | IncomingRequestCommand, details?: unknown) {
     super(message);
 
     this.name = new.target.name;
     this.code = code ?? ErrorType.GENERIC_ERROR;
     this.message = message ?? '';
+    this.message = command ?? '';
     this.details = details ?? {};
 
     Object.setPrototypeOf(this, new.target.prototype);