UNPKG

@munit-solutions/ocpp

Version:
14 lines (13 loc) 410 B
import ErrorCode from '../enum/ErrorCode'; import ClientCommand from '../enum/ClientCommand'; export default class CallError extends Error { messageType: ClientCommand; id: string; errorCode: ErrorCode; errorDescription: { [key: string]: any; }; constructor(messageType: ClientCommand, id: string, errorCode: ErrorCode, errorDescription: { [key: string]: any; }); }