refactor(ui): cleanup variables namespace
[e-mobility-charging-stations-simulator.git] / src / exception / BaseError.ts
index 0f41c331b73aabdcbf12bb6da19ef8a51c6c6cfb..4a94fc26fd24bf952331c5a7cbb52bead8fdc0e7 100644 (file)
@@ -1,10 +1,10 @@
 export class BaseError extends Error {
+  public date: Date
+
   public constructor (message?: string) {
     super(message)
     this.name = new.target.name
+    this.date = new Date()
     Object.setPrototypeOf(this, new.target.prototype)
-    if (this.stack == null && typeof BaseError.captureStackTrace === 'function') {
-      BaseError.captureStackTrace(this, this.constructor)
-    }
   }
 }