• If there is a problem, catch the exception and go from there.

    如果出现问题要捕获异常加以处理。

    youdao

  • When to catch the Exception vs When to throw the Exceptions?

    捕获异常何时抛出异常

    youdao

  • And even if you catch the exception, it is possible that a connection will be left open.

    即使捕获异常,仍有可能一直保持连接。

    youdao

  • That's why the listing is written to catch the exception but doesn't actually do anything with it.

    就是清单包含异常捕获功能,实际没有进行任何操作原因

    youdao

  • If the calling code does catch the exception, the pipe consumer will still see the error, but there will not be a duplicate error.

    如果调用代码捕获异常管道使用者看到错误不会重复错误。

    youdao

  • Since the remote file may not exist yet, we need to catch the exception that Net: : SFTP will throw when we try to determine its timestamp.

    由于远程文件可能存在,所以我们需要捕捉我们试图查看一个不存在文件的时间戳的时候Net: SFTP抛出异常

    youdao

  • If, however, an error is encountered when the EJB processes the request, the servlet will catch the exception thrown by the EJB and instantiate an ErrorBean to encapsulate the error message.

    但是如果eJB处理请求遇到错误servlet捕获e JB抛出异常Error Bean实例化,封装出错消息。

    youdao

  • By the time you catch an exception, you have no record of where the exception was thrown.

    捕获到一个异常,你甚至知道这个异常是从哪个地方抛出

    youdao

  • The SOAP method call is performed within a try - except block, which is generally good style, but here we do it specifically to catch a SOAP.faultType exception.

    SOAP方法调用try-except执行的,一般来说这种方式比较好这里我们这样做只是捕捉 SOAP.faultType异常

    youdao

  • This isas you might expectan exception handler, which will now catch the E739 error that is thrown if mkdir is unable to create the requested directory.

    就是——期待的——一个异常处理器现在将会捕捉如果mkdir不能创建请求目录而被抛出的E739错误

    youdao

  • As an alternative, you can catch this exception directly in your code and handle it some other way (perhaps printing out the actual error message along with usage information, for instance).

    替代的方法是,也可以代码直接捕捉这个异常并且其他方式处理异常(例如,可能会使用信息一起输出真正错误消息)。

    youdao

  • For transparent switch over, applications can be coded to catch the StaleConnection exception and retry a specified number of times to obtain new connection handles.

    为了能够透明地切换可以应用程序编码为捕获StaleConnection异常重试指定连接次数获取新的连接句柄。

    youdao

  • What's new in 1.4 is that if you rethrow an exception from the catch clause, you can attach the original cause of the exception.

    发行版 1.4中的功能如果catch 子句重新抛出了一个异常可以附加上异常初始原因

    youdao

  • First, the program did not hit the catch clause for an exception of type ApplicationException, even though that's the type of exception thrown from the static constructor.

    第一程序不会类型ApplicationException异常寻找catch即使这种类型的异常是从静态构造函数引发也如此。

    youdao

  • A try... catch structure changes the runtime exception behavior to what is specified in the catch clause.

    catch结构运行时异常行为更改catch子句指定行为。

    youdao

  • When Derby shuts down a database, it throws an SQLException with an SQLState of 08006, which is why the catch block ignores this exception.

    Derby关闭数据库时,将抛出SQLException,使用08006作为SQLState,就是catch忽略异常的原因

    youdao

  • Problem is, the only exception I catch is the base class.

    现在的问题只能捕获这个异常

    youdao

  • Client code calling the data logic method can catch the user-defined exception.

    客户端代码调用数据逻辑方法可以捕获用户定义的异常。

    youdao

  • In case of an exception, the catch block simply called the exception publisher, then returned the executing thread back to the thread pool.

    如果发生异常这个catch只是简单地调用异常发布程序然后正在执行线程返回线程池中。

    youdao

  • When an exception is thrown, the runtime will begin to look for the nearest catch clause whose filters specify that it can handle the exception.

    引发异常时,运行库开始查找筛选器指定可以处理异常最近catch 子句。

    youdao

  • If you like, you can assert something about the thrown exception in the catch block. For example, Listing 6 checks that FunctionContext is not serializable.

    如果愿意还可catch中作出一些关于抛出异常断言

    youdao

  • If so, the current driver does not add the catch block for any custom exception thrown by the Web service.

    如果,则表明当前驱动器没有Web服务抛出自定义异常添加批处理

    youdao

  • This way you can find the unexpected exceptions during the testing phase and address them in some manner more appropriate than a catch for all exception types.

    这个方法测试以及定位这些异常的时候,可以找到这些意外的异常,总接收所有异常类型要更加合适

    youdao

  • To disable exception handling, you need to remove all try and catch blocks from the sources and compiling the code using the /GX- option.

    禁用异常处理需要源代码中删除所有trycatch使用 /GX-选项编译代码

    youdao

  • If the service throws an exception, then this code falls into the catch block.

    如果服务引发异常代码进入catch

    youdao

  • The method will catch other exceptions such as MalformedURLException and IOException and throw the custom exception so that it can be caught by the GWT client.

    方法捕捉其他异常(比如MalformedURLExceptionIOException)抛出定制异常,让GWT客户机可以捕捉

    youdao

  • It iterates the list of catch blocks, and if it finds one that catches Exception, it looks again for a catch block that catches RuntimeException for the same range of bytecodes.

    将迭代捕获列表如果发现捕获Exception,它会再次查找捕获块,该捕获块将捕获字节同一范围RuntimeException

    youdao

  • Because the value of value is out of range, an exception is thrown that is caught in the catch block.

    因为value超出范围,所以抛出了一个catch块捕获的异常。

    youdao

  • If the content isn't supported, the code throws an exception, which is caught by the try-catch block.

    如果内容受支持,那么代码抛出一个异常,此异常try - catch捕捉到。

    youdao

  • It's important that you catch this exception and add it to the QueryResults, and that you do not stop the execution of the ItemFinder.

    重要的是捕获这个异常添加到QueryResults而且并不停止ItemFinder执行

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定