aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/resources/config/error-configuration.yaml
blob: 44173cd6f2be21f459366c1c06a72a4dbd7e63f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Errors
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."
    }