diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config/error-configuration.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/resources/config/error-configuration.yaml b/src/main/resources/config/error-configuration.yaml index 3febd33..58d1de3 100644 --- a/src/main/resources/config/error-configuration.yaml +++ b/src/main/resources/config/error-configuration.yaml @@ -2,17 +2,21 @@ errors: FILE_NOT_FOUND: { code: TP0001, + failOnError: true, message: "Error: CSAR file not found." } BAD_FORMAT: { code: TP0002, + failOnError: true, message: "Error: CSAR file bad format. Check the log for details." } CONFORMANCE_LEVEL_ERROR: { code: TP0003, + failOnError: true, message: "Error: CSAR version is unsupported. Parser supports versions %s to %s." } GENERAL_ERROR: { code: TP0004, + failOnError: true, message: "Error: an unexpected internal error occured." - }
\ No newline at end of file + } |