Most suitable way for returning the logical errors
What is most suitable way for returning the logical errors in a C plus plus program?
- 4627 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- Interview questions for C++ language
- What is difference between C and C++ ?
- How many times will this loop execute?
- What are the five basic elements of a C++ program?
- Difference between class and struct?
- Can someone please update me with the important exam dates of C Plus Plus Programming Exam?
- Where to find internship for C plus plus ?
- What is C++ programming language used for?
- Which is the best software for C++ programming?
- how c plus plus is different than java ?
Practice Mock Test
c plus plus programming
The better way is to throw custom exception. That's why they were introduced. If you need to provide specific info, like ErrorCode or something else, you could easily extend base Exception class to do so. Main reasons are:br /br /You can ignore invalid error code returned from your funcion and this could lead you to the situation where your system state is corrupted whereas Exception is something you can't ignore.br /If your funcion does something usable then it should return some data you interested in and not the error codes, this gives you more solid design.....