38 lines
973 B
Python
38 lines
973 B
Python
|
class statuscodes:
|
||
|
description = dict(
|
||
|
# 000 - 400 server side
|
||
|
# 000 information
|
||
|
001 = "OK",
|
||
|
002 = "Version",
|
||
|
003 = "MOTD",
|
||
|
# 100 authentication and maintenance
|
||
|
101 = "Challenge",
|
||
|
102 = "Success",
|
||
|
103 = "Failure",
|
||
|
104 = "To Many Tries",
|
||
|
# 200 command
|
||
|
201 = "Valid",
|
||
|
202 = "Valid Service Command",
|
||
|
203 = "Invalid",
|
||
|
204 = "Failure",
|
||
|
205 = "Continue",
|
||
|
# 300 server
|
||
|
301 = "Unhandled Exception",
|
||
|
302 = "Shutting Down",
|
||
|
303 = "Restarting",
|
||
|
304 = "Encoding Error",
|
||
|
305 = "SSL Error",
|
||
|
# 500 - 900 client side
|
||
|
# 500 information
|
||
|
501 = "OK",
|
||
|
502 = "Version",
|
||
|
# 600 authentication and maintenance
|
||
|
601 = "Response",
|
||
|
602 = "Failure",
|
||
|
# 700 command
|
||
|
701 = "Reqiuest",
|
||
|
702 = "Cancel",
|
||
|
# 800 client
|
||
|
801 = "SSL Error"
|
||
|
)
|