X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fperformance%2Fstorage%2FMongoDBStorage.ts;h=7dd505d3732f4a3316e4f40c1710d98ea7025afa;hb=3e8d029bbd0a072ae80c45e9a50770de3218cbc1;hp=32532eadb1f829acad8727e2a58295b55123f4f4;hpb=268a74bb051fcbbad532fd833f0d8fd2b33b6c64;p=e-mobility-charging-stations-simulator.git diff --git a/src/performance/storage/MongoDBStorage.ts b/src/performance/storage/MongoDBStorage.ts index 32532ead..7dd505d3 100644 --- a/src/performance/storage/MongoDBStorage.ts +++ b/src/performance/storage/MongoDBStorage.ts @@ -3,8 +3,9 @@ import { MongoClient } from 'mongodb'; import { Storage } from './Storage'; +import { BaseError } from '../../exception'; import { type Statistics, StorageType } from '../../types'; -import { Constants } from '../../utils/Constants'; +import { Constants } from '../../utils'; export class MongoDBStorage extends Storage { private readonly client: MongoClient | null; @@ -55,14 +56,14 @@ export class MongoDBStorage extends Storage { private checkDBConnection() { if (!this?.client) { - throw new Error( + throw new BaseError( `${this.logPrefix} ${this.getDBNameFromStorageType( StorageType.MONGO_DB )} client initialization failed while trying to issue a request` ); } if (!this.connected) { - throw new Error( + throw new BaseError( `${this.logPrefix} ${this.getDBNameFromStorageType( StorageType.MONGO_DB )} connection not opened while trying to issue a request`