单选题exception对象的作用是()A针对错误网页,未捕捉的例外B用来传送回应的输出C正在执行的内容D用户端请求,此请求会包含来自GET/POST请求的参数
单选题
exception对象的作用是()
A
针对错误网页,未捕捉的例外
B
用来传送回应的输出
C
正在执行的内容
D
用户端请求,此请求会包含来自GET/POST请求的参数
参考解析
解析:
暂无解析
相关考题:
Youarecreatinganerrorpagethatprovidesauser-friendlyscreenwheneveraserverexceptionoccurs.Youwanttohidethestacktrace,butyoudowanttoprovidetheexception’serrormessagetotheusersotheusercanprovideittothecustomerserviceagentatyourcompany.WhichELcodesnippetinsertsthiserrormessageintotheerrorpage?()A.Message:b${exception.message}/bB.Message:b${exception.errorMessage}/bC.Message:b${request.exception.message}/bD.Message:b${pageContext.exception.message}/bE.Message:b${request.exception.errorMessage}/b
Which statement is correct regarding exception traffic processing?() A. Exception traffic is only handled by the PFEB. Exception traffic is rate-limited across the internal link to protect the REC. Exception traffic is not prioritized during times of congestionD. Exception traffic is forwarded based on forwarding table entries
Which statement is correct regarding exception traffic processing?()A、Exception traffic is only handled by the PFEB、Exception traffic is rate-limited across the internal link to protect the REC、Exception traffic is not prioritized during times of congestionD、Exception traffic is forwarded based on forwarding table entries
文档标签@exception在文档注释中的格式一般是()。A、@exception类名描述B、@exception异常描述C、@exception异常变量名描述D、不存在文档标签@exception
public class Test { public static void aMethod() throws Exception { try { throw new Exception(); } finally { System.out.println(“finally”); } } public static void main(String args[]) { try { aMethod(); } catch (Exception e) { System.out.println(“exception”); } System.out.println(“finished”); } } What is the result?() A、 finallyB、 exception finishedC、 finally exception finishedD、 Compilation fails.
单选题public class Test { public static void aMethod() throws Exception { try { throw new Exception(); } finally { System.out.println(“finally”); } } public static void main(String args[]) { try { aMethod(); } catch (Exception e) { System.out.println(“exception”); } System.out.println(“finished”); } } What is the result?()A finallyB exception finishedC finally exception finishedD Compilation fails.
单选题文档标签@exception在文档注释中的格式一般是()。A@exception类名描述B@exception异常描述C@exception异常变量名描述D不存在文档标签@exception