Home / Questions / Write general syntax of try-catch block
Explanatory Question

Write general syntax of try-catch block

👁 538 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

Syntax of try catch in java

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