
Notifications
Clear all
When should we use try catch?
0
28/08/2023 5:54 pm
Topic starter
When should we use try catch?
Answer
Add a comment
Add a comment
1 Answer
0
29/08/2023 5:56 am

You should use a try-catch block in your code when you anticipate that a certain section of your code might raise an exception (error), and you want to handle that exception gracefully instead of letting it crash your program. The try block contains the code where you suspect an exception might occur, and the catch block (also known as the except block in some programming languages) contains the code that specifies what to do if an exception occurs within the try block. This helps prevent unexpected crashes and allows you to handle errors in a controlled manner.
Add a comment
Add a comment
Forum Information
- 22 Forums
- 1,969 Topics
- 5,309 Posts
- 0 Online
- 1,284 Members
Our newest member: JamesHaism
Latest Post: Space bug using " & n b s p ; "
Forum Icons:
Forum contains no unread posts
Forum contains unread posts
Topic Icons:
Not Replied
Replied
Active
Hot
Sticky
Unapproved
Solved
Private
Closed