What do you mean by try-catch block?

Java Programming Language >   Managing Errors and Exception >   try and catch  

Short Question

601


Answer:

Try and catch are keywords that represent the handling of exceptions due to data or coding errors during program execution. A try block is the block of code in which exceptions occur. A catch block catches and handles try block exceptions.

Syntax of try catch in java

try
{     //statements that may cause an exception
}
Catch (exception (type) e (object))?
{      //error handling code
}


This Particular section is dedicated to Question & Answer only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.




Join Our telegram group to ask Questions

Click below button to join our groups.