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 |
When do we go for bc level user properties?
What is PDQ’s? If you have created a PDQ and if someone else is logging into Siebel with his ID, then will he be able to see the PDQ which you have saved? Will the Admin will be able to see all the PDQ’s.
Explain what is an extension table and how is it related to base table?
How to create Drilldown in Form applet?
How is Siebel 7.x architecture different from Siebel 6.x?
1 Answers Lanco, Quinnox, Siebel Systems,
What is foreign key table in siebel?
How will you improve your performance in views?
what is siebmtsh.exe ?
Explain when do we go for dynamic picklist and for pick applet?
What is an extension table and how is it related to base table?
3 Answers IBM, Siebel Systems,
Give an example of the eim delete process's behavior?
Suppose in an applet we have a button when we click on that button we need to get an business service. How we are going to do it?