"""Generic error messages.""" ERROR_CODE_AUTHORIZATION = 'authorization_error' ERROR_CODE_BAD_GRASS_REQUEST = 'bad_grass_request_error' ERROR_CODE_NOT_FOUND = 'not_found' ERROR_CODE_BAD_REQUEST = 'bad_request' ERROR_MESSAGE_MISSING_GRASS_HEADERS = 'Missing Grass Headers' ERROR_MESSAGE_INCOMPLETE_GRASS_HEADERS = 'Incomplete Grass Headers' ERROR_MESSAGE_INVALID_GRASS_ACCOUNT_TYPE = 'Invalid Grass Account Type' ERROR_MESSAGE_FORBIDDEN_USER = 'User is forbidden' ERROR_MESSAGE_VENDOR_NOT_FOUND = 'Vendor not found' ERROR_MESSAGE_INVALID_REQUEST_BODY = 'Invalid request body' SUCCESS_CODE = 'ok' VALIDATION_ERROR_CODE = 'validation_error' VALIDATION_ERROR_MSG = 'Invalid data passed' ERROR_LABEL_FOR_COUNTRY_NOT_FOUND = 'label ids not found for country id:{}.' TOOL_SHUTDOWN_SUCCESS_STATUS = 'success' TOOL_SHUTDOWN_FAILURE_STATUS = 'failure' ERROR_CODE_CSV_FILE_WRITE = 'csv_file_write_error' ERROR_MANUAL_LABEL_MESSAGE = 'Please enter a comment of 4 or more characters' ERROR_MESSAGE_INVALID_CHARACTER = 'Invalid label ids. They must be comma ' \ 'separated numbers. Alphabets and special characters are not allowed'