X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fexception%2FOCPPError.ts;h=4fb9ea165a1a827d952a7422e4f13c423061deef;hb=a6ef1ece74c0d08e86a905571f4f6045c28131cb;hp=bfe64fb43a657049e27ce451787de42933b310f6;hpb=e3822d6f1b40477f7308ad70c290ed2c4106c585;p=e-mobility-charging-stations-simulator.git diff --git a/src/exception/OCPPError.ts b/src/exception/OCPPError.ts index bfe64fb4..4fb9ea16 100644 --- a/src/exception/OCPPError.ts +++ b/src/exception/OCPPError.ts @@ -1,26 +1,30 @@ -// Partial Copyright Jerome Benoit. 2021. All Rights Reserved. +// Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -import { IncomingRequestCommand, RequestCommand } from '../types/ocpp/Requests'; +import { BaseError } from './BaseError.js'; +import { + ErrorType, + type IncomingRequestCommand, + type JsonType, + type RequestCommand, +} from '../types/index.js'; +import { Constants } from '../utils/index.js'; -import BaseError from './BaseError'; -import { ErrorType } from '../types/ocpp/ErrorType'; -import { JsonObject } from '../types/JsonType'; - -export default class OCPPError extends BaseError { +export class OCPPError extends BaseError { code: ErrorType; command?: RequestCommand | IncomingRequestCommand; - details?: JsonObject; + details?: JsonType; constructor( code: ErrorType, message: string, command?: RequestCommand | IncomingRequestCommand, - details?: JsonObject + details?: JsonType, ) { super(message); - this.code = code ?? ErrorType.GENERIC_ERROR; - this.command = command; - this.details = details ?? {}; + this.code = code; + this.command = + command ?? (Constants.UNKNOWN_COMMAND as RequestCommand | IncomingRequestCommand); + this.details = details; } }