aboutsummaryrefslogtreecommitdiffstats
path: root/moon_engine/moon_engine/api/__init__.py
blob: deafe11bd222d5682ebe702864544795d82a56b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Software Name: MOON

# Version: 5.4

# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
# SPDX-License-Identifier: Apache-2.0

# This software is distributed under the 'Apache License 2.0',
# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
# or see the "LICENSE" file for more details.



from falcon import HTTP_400, HTTP_401, HTTP_402, HTTP_403, HTTP_404, HTTP_405, \
    HTTP_406, HTTP_407, HTTP_408, HTTP_409, HTTP_500

ERROR_CODE = {
    400: HTTP_400,
    401: HTTP_401,
    402: HTTP_402,
    403: HTTP_403,
    404: HTTP_404,
    405: HTTP_405,
    406: HTTP_406,
    407: HTTP_407,
    408: HTTP_408,
    409: HTTP_409,
    500: HTTP_500
}