GetMaxSeverity (arcpy)

摘要

获取从上次执行工具以来返回的最大严重性。

语法

GetMaxSeverity ()
返回值
数据类型说明
Integer

返回的严重性。

  • 0未产生错误/警告。
  • 1产生了警告。
  • 2产生了错误。

代码实例

GetMaxSeverity 示例

根据上次所执行命令的最大严重性显示自定义消息。

import arcpy

# Set current workspace
arcpy.env.workspace = "c:/data/mydata.gdb"

try:
    arcpy.Clip_analysis("Roads", "County", "Roads_Clip")
except arcpy.ExecuteError:
    pass

severity = arcpy.GetMaxSeverity()

if severity == 2:
    # If the tool returned an error
    print("Error occurred \n{0}".format(arcpy.GetMessages(2)))
elif severity == 1:
    # If the tool returned no errors, but returned a warning
    print("Warning raised \n{0}".format(arcpy.GetMessages(1)))
else:
    # If the tool did not return an error or a warning
    print(arcpy.GetMessages())

相关主题

5/10/2014