尝试并抓住替代方案

时间:2016-09-28 13:31:57

标签: error-handling try-catch autoit

AutoIt中是否有Try and Catch的替代方案?我想知道是否有类似的东西。

1 个答案:

答案 0 :(得分:3)

AutoIt中没有try-catch-construct。您必须使用the @error macro

call_your_function_here()
If @error Then
    ;do your error stuff
Else
    ;do your program stuff
EndIf