AddIDMessage (arcpy)

摘要

可以通过脚本工具使用系统消息。了解地理处理工具的错误和警告信息下面列出了可用的消息和 ID 列表。

讨论

地理处理过程中错误和警告信息由地理处理工具返回,形式为一个六位数代码和一条文本消息。每个错误和警告在桌面帮助系统中都有对应的描述页面。该页面包含详细的错误描述以及针对该错误的可能解决方案。工具对话框、Python 窗口以及结果窗口中的 ID 代码是一个链接,用户单击它后会进入描述页面。

语法

AddIDMessage (message_type, message_ID, {add_argument1}, {add_argument2})
参数说明数据类型
message_type

The message type defines whether the message will be an error, warning, or informative. Valid message types are:

  • ERRORAdds an error message to the tool messages.
  • INFORMATIVEAdds an informative message to the tool messages.
  • WARNINGAdds a warning message to the tool messages.
String
message_ID

The message ID allows you to reference existing messages for your scripting errors and warnings.

Integer
add_argument1

Depending on which message ID is used, an argument may be necessary to complete the message. Common examples include dataset or field names. Datatype can be string, integer, or double.

Object
add_argument2

Depending on which message ID is used, an argument may be necessary to complete the message. Common examples include dataset or field names. Datatype can be string, integer, or double.

Object

代码实例

AddIDMessage 示例

向 Python 脚本工具添加消息。

class overwriteError(Exception):
    pass

import arcpy

inFeatureClass  = arcpy.GetParameterAsText(0)
outFeatureClass = arcpy.GetParameterAsText(1)

try:
    # If the output feature class already exists, raise an error
    #
    if arcpy.Exists(inFeatureClass):
        # Raise a custom exception
        #
        raise overwriteError(outFeatureClass)
    else:
        arcpy.CopyFeatures_management(inFeatureClass, outFeatureClass)

except overwriteError as e:
    # Use message ID 12, and provide the output feature class
    #    to complete the message.
    #
    arcpy.AddIDMessage("Error", 12, str(e))

相关主题

9/15/2013