Most suitable way for returning the logical errors
What is most suitable way for returning the logical errors in a C plus plus program?
- 4585 Views
- 1 Answers
1 Answers
-
-
- 02 Apr
- 0 Comment
-
- What is C++ programming language used for?
- Early bindingand Late binding in C++
- How many times will this loop execute?
- Reallocation of pointers in C++
- how c plus plus is different than java ?
- What are the five basic elements of a C++ program?
- What are tips for someone whose learning C++?
- Which is the best software for C++ programming?
- When we already have C language then why C++?
- Difference between class and struct?
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.....