Eric Torres 8112c66d31 Revert "Update file permissions"
This reverts commit 379086661145f059974b94ea4503d8331195d6a5.
2021-12-21 00:53:44 -08:00

21 lines
432 B
Python

"""
.. moduleauthor:: Eric Torres
.. module:: file_scripts:error
:synopsis: Exit codes and error handling.
"""
# ========== Imports ==========
# ========== Constants ==========
# ----- Exit Codes -----
E_INTERRUPT = 1
E_NOFILESELECTED = 2
E_NOEDITORFOUND = 3
E_NO_RESULTS = 4
E_USER_RESPONSE_NO = 5
E_FILE_EXISTS = 6
# ----- Messages -----
NO_FILE_SELECTED_MESSAGE = "No file was selected."
# ========== Functions ==========