What is the use of catch in escript?
Submitted by: AdministratorThe 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()));
}
Submitted by: Administrator
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()));
}
Submitted by: Administrator
Read Online Siebel Common Job Interview Questions And Answers
Top Siebel Common Questions
☺ | Explain Whats the difference between siebel 7.5 and 7.8? if we upgarde the application to 7.8 from 7.5 what are the areas we need to give importance from QA(Testing) point of view? |
☺ | What are the differences between siebel 7.8 and 8.0? |
☺ | Explain What is Symbolic URL in Siebel? |
☺ | How to configure a MVG? |
☺ | Explain How many type of siebel Data model extensions are there? |
Top Siebel CRM Categories
☺ | Siebel Common Interview Questions. |
☺ | Siebel Realtime Interview Questions. |
☺ | Siebel Administrator Interview Questions. |