X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fexception%2FBaseError.ts;h=4a94fc26fd24bf952331c5a7cbb52bead8fdc0e7;hb=55ae7b758f478a2beb4557bbc96363fb913dcc73;hp=84421eac143b3db6440fd74cb2c8fc6ed8ec3eee;hpb=268a74bb051fcbbad532fd833f0d8fd2b33b6c64;p=e-mobility-charging-stations-simulator.git diff --git a/src/exception/BaseError.ts b/src/exception/BaseError.ts index 84421eac..4a94fc26 100644 --- a/src/exception/BaseError.ts +++ b/src/exception/BaseError.ts @@ -1,12 +1,10 @@ export class BaseError extends Error { - public constructor(message?: string) { - super(message); - this.name = new.target.name; - Object.setPrototypeOf(this, new.target.prototype); - Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.createStack(); - } + public date: Date - private createStack(): void { - this.stack = new Error().stack; + public constructor (message?: string) { + super(message) + this.name = new.target.name + this.date = new Date() + Object.setPrototypeOf(this, new.target.prototype) } }