1# Exit codes for conan command:
2SUCCESS = 0                             # 0: Success (done)
3ERROR_GENERAL = 1                       # 1: General ConanException error (done)
4ERROR_MIGRATION = 2                     # 2: Migration error
5USER_CTRL_C = 3                         # 3: Ctrl+C
6USER_CTRL_BREAK = 4                     # 4: Ctrl+Break
7ERROR_SIGTERM = 5                       # 5: SIGTERM
8ERROR_INVALID_CONFIGURATION = 6         # 6: Invalid configuration (done)
9ERROR_INVALID_SYSTEM_REQUIREMENTS = 7   # 7: Invalid system requirements
10