What is the use of catch in escript?
Answer / guest
The catch clause is used to handle the exception. To raise
an exception, use the throw statement. When you want to trap
potential errors generated by a block of code, place that
code in a try statement, and follow the try statement with a
catch statement. The catch statement is used to process the
exceptions that may occur in the manner you specify in the
exception_handling_block. The following example demonstrates
the general form of the try statement with the catch clause.
In this example, the script continues executing after the
error message is displayed:
try {
do_something;
}
catch (e) {
TheApplication().RaiseErrorText(Clib.rsprintf("Something bad
happened: %s",e.toString()));
}
| Is This Answer Correct ? | 3 Yes | 0 No |
How we will create drilldown in form applet?
Explain what is eapps.cfg file?
Tell me when do you use property sets in siebel?
What is the difference between vbc and ebc in siebel?
how to invoke workflows using scripting
Explain how to specify a view to be displayed as aggregate view in siebel 7.7?
what is the difference between join and link?
Tell me is it posible to access more than one database at a single siebel application?
Explain what is an extension table and how is it related to base table?
Explain where did you use wf in your last project?
Define seed data in Siebel?
Tell me what is the behavior of the eim delete process?