Answer Posted / 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 |
Post New Answer View All Answers
Explain what is virtual bc?
Explain how to run genbscript.exe?
When do we use genbscript.exe?
what is the difference between siebel 7.5 and 7.8? If we upgrade the application to 7.8 from 7.5 what are the areas we need to give importance from qa(testing) point of view?
Explain how is siebel 7.x architecture different from siebel 6.x?
What are the different types of columns?
Explain how is load balancing maintained in siebel?
What happens if you create an employee in siebel application and forget to create?
Where you will drop the constraints?
What is the most difficult assignment that was given to you in workflows and how did you come up with the solution?
Explain what is detailed category and what is its use in configuration?
When do we go for bc level user properties?
What is foreign key table in siebel?
what is the link specification?
Explain when do we go for dynamic picklist and for pick applet?