refactor: order ErrorType enum properly
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 21 Aug 2024 22:59:05 +0000 (00:59 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 21 Aug 2024 22:59:05 +0000 (00:59 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/types/ocpp/ErrorType.ts

index d405ee4dc8d367e0070c6ab07bce78616a9f6e27..506b4d5bb214c1d1061d70a7daa4a848e8c536e1 100644 (file)
@@ -1,8 +1,8 @@
 export enum ErrorType {
-  FORMAT_VIOLATION = 'FormatViolation',
   // Payload for Action is syntactically incorrect or not conform the PDU structure for Action
+  FORMAT_VIOLATION = 'FormatViolation',
   FORMATION_VIOLATION = 'FormationViolation',
-  // Any other error not covered by the previous ones
+  // Any other error not covered by the other ones
   GENERIC_ERROR = 'GenericError',
   // An internal error occurred and the receiver was not able to process the requested Action successfully
   INTERNAL_ERROR = 'InternalError',