Most suitable way for returning the logical errors
What is most suitable way for returning the logical errors in a C plus plus program?
- 4623 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- how c plus plus is different than java ?
- Can someone please update me with the important exam dates of C Plus Plus Programming Exam?
- Where can I find study materials for learning c++?
- Accessing private and protected members
- How many times will this loop execute?
- What are the topics in C++? Explain your answer
- Is Python better than C++? Explain your answer
- Interview questions for C++ language
- What are tips for someone whose learning C++?
- What is C++? How one can go for C++ in engineering?
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.....