docs: fix README.md formatting
[e-mobility-charging-stations-simulator.git] / src / exception / BaseError.ts
index 6b9ea70fd914de381f4bf90a82abd9778dc8c9fd..4a94fc26fd24bf952331c5a7cbb52bead8fdc0e7 100644 (file)
@@ -1,14 +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)
-    typeof Error.captureStackTrace === 'function'
-      ? Error.captureStackTrace(this, this.constructor)
-      : this.createStack()
-  }
-
-  private createStack (): void {
-    this.stack = new Error().stack
   }
 }