sublime-rana/packages/wakatime/constants.py

41 lines
834 B
Python
Raw Normal View History

2016-01-06 21:57:03 +00:00
# -*- coding: utf-8 -*-
"""
wakatime.constants
~~~~~~~~~~~~~~~~~~
Constant variable definitions.
:copyright: (c) 2016 Alan Hamlett.
:license: BSD, see LICENSE for more details.
"""
2016-09-02 08:50:54 +00:00
""" Success
Exit code used when a heartbeat was sent successfully.
"""
2016-01-06 21:57:03 +00:00
SUCCESS = 0
2016-09-02 08:50:54 +00:00
""" Api Error
Exit code used when the WakaTime API returned an error.
"""
2016-01-06 21:57:03 +00:00
API_ERROR = 102
2016-09-02 08:50:54 +00:00
""" Config File Parse Error
Exit code used when the ~/.wakatime.cfg config file could not be parsed.
"""
2016-01-06 21:57:03 +00:00
CONFIG_FILE_PARSE_ERROR = 103
2016-09-02 08:50:54 +00:00
""" Auth Error
Exit code used when our api key is invalid.
"""
2016-03-06 20:48:42 +00:00
AUTH_ERROR = 104
2016-09-02 08:50:54 +00:00
""" Unknown Error
Exit code used when there was an unhandled exception.
"""
2016-03-06 22:13:27 +00:00
UNKNOWN_ERROR = 105
2016-09-02 08:50:54 +00:00
""" Malformed Heartbeat Error
Exit code used when the JSON input from `--extra-heartbeats` is malformed.
"""
2016-04-28 22:04:46 +00:00
MALFORMED_HEARTBEAT_ERROR = 106