AddError

Cette documentation ArcGIS 2.8 a été archivée et n’est plus mise à jour. Certains contenus et liens peuvent être obsolètes. Consultez la dernière version de la documentation.

Résumé

Adds an error message (severity of 2) to the messages of a script tool or Python toolbox tool.

When a tool is run, arcpy is fully aware of the application from which it is called. One major effect of this is that you can write messages in Python and your messages automatically appear on the tool dialog box, in the history, and in the Python window.

Syntaxe

AddError (message)
ParamètreExplicationType de données
message

The error message to add.

String

Exemple de code

AddError example

Add a custom geoprocessing error message.

import arcpy

fc = arcpy.GetParameterAsText(0)

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

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

Rubriques connexes