与java一样,您可以指定您正在调用的方法会抛出某些异常。 例如.-
public void getListOfAssessments() throws SQLException;
那么,我们有什么方法可以在ActionScript(Flex)中实现这一点吗?
谢谢, Indrajit
答案 0 :(得分:4)
我知道的唯一方法是使用@throws
ASDocs标签。例如:
@throws SecurityError Local untrusted SWFs may not communicate with the Internet.
有关详细信息,请参阅此链接:http://help.adobe.com/en_US/flex/using/WSd0ded3821e0d52fe1e63e3d11c2f44bc36-7ff6.html
答案 1 :(得分:2)
在测试套件中添加一项测试,表明这是预期的http://docs.flexunit.org/index.php?title=Exception_Handling。 (团队中的其他开发人员 正在阅读您的测试以查看您的Classes的行为,对吧?)