in src/services/rest/errors/BasicError.ts [8:13]
constructor(message: string) {
super(message)
Object.setPrototypeOf(this, BasicError.prototype)
this.message = message
this.dateTimeId = Date.now() * RANDOM_DATE_MODIFIER + getRandomInt(0, RANDOM_DATE_MODIFIER - 1)
}