我试图在 try catch 中总结简单的语句。问题是我能找到的所有示例都讨论了预定义的错误。
我需要一个通用错误,类似于 C# 中的 try/catch。
对于通用的 try catch,您可以这样做:
try
...put some code here
catch
...do something for ANY exception here.
finally
...code here that runs IF an exception occurs
end try
catch 部分具有可选参数来捕获某些类型的错误(您已经看到的示例)。第一段给出了http://docs.xojo.com/index.php/Try的定义
Try
// Your code
Catch [ErrorParameter] [As ErrorType]
//exception handlers
[ Finally ]
//code that executes even if runtime exceptions were raised
End [Try]