我正在尝试处理作为 java.net 包一部分的异常。我浏览了文档,看到了属于该包的 12 个异常,但我找不到这些异常的父类。
到目前为止,我尝试过的是:
catch(Exception e)
{
if(e instanceof org.openqa.selenium.WebDriverException)
sendException("Problem is with the selenium web driver");
else if(e instanceof java.net.Exception) //I need help with this line
sendException("There is some problem with the network");
}
尝试此操作后,我收到以下错误消息
无法解析类 java.net.Exception
如何捕获 java.net 异常?
翻过高山走不出你
www说
SMILET
慕田峪9158850
相关分类