AddError (arcpy)

摘要

创建地理处理工具错误消息(严重性 = 2),此消息可通过任意的 GetMessages 函数访问。

语法

AddError (message)
参数说明数据类型
message

The message to add.

String

代码实例

AddError 示例

添加自定义地理处理错误消息。

import arcpy

fc = arcpy.GetParameterAsText(0)

# Get the count from GetCount's Result object
feature_count = int(arcpy.GetCount_management(fc).getOutput(0))

if feature_count == 0:
    arcpy.AddError("{0} has no features.".format(fc))
else:
    arcpy.AddMessage("{0} has {1} features.".format(fc, feature_count))

相关主题

5/10/2014