If we are talking about C++ application/module internal error-handling policy then my personal opinion is:
Q: Do exceptions replace the error codes completely or maybe I need to use them only for "fatal cases"?
A: They do. Exceptions are always better for C++ function than returning error codes. The reason is explained below.
Q: Is mixing two paradigms (exceptions and error codes) considered a good idea?
A: No. Mixing is ugly and makes error handling inconsistent. When I'm forced to use error-returning API (like Win32 API, POSIX, etc) I use exception throwing wrappers.
Q: Is it good idea to provide user with two conceptions?
A: No. Users are confused which variant to choose and usually make worst decision of mixing both. Some users prefer exceptions others prefer error-returning and if all of them work on the same project they make project's error-handling practice a total mess.
Q: Are there any good examples of the exceptions and error codes mixing conception?
A: No. Show me if you find one. IMO isolating error returning functions with exception throwing wrappers is the best practice if you have to use error-returning functions (and you usually do have to use them).
Q: How would you implement this?
A: I would use exceptions only. My way is returning only in the case of success. Error-returning practice heavily messes the code with error-checking branches or even worse - error status checking is missing and thus error status is just ignored that make the code full of hidden bugs that hard to reveal. Exceptions make error handling isolated. If you need to handle some kind of error in-place it usually means that it is not an error at all but just some legitimate event that may be reported by successful return with some specific status indicated (by return value or otherwise). If you really need to check if some error occurred locally (not from the root try/catch block) you can try/catch locally so using only exceptions doesn't really limit your capabilities in any way.
Important Note:
For every particular situation it is very important to correctly define what is error and what is not (for best usability).
E.g. say we have a function that shows input dialog and return text entered by the user and if the user may cancel the input then cancel event is success - not error (but it must be somehow indicated on return that user canceled the input) but lack of resources (like memory or GDI objects or something) or something like the absence of the monitor to show the dialog is indeed error.
In general:
Exceptions are more natural error-handling mechanism for C++ language. So using exceptions is a good idea if you are developing C++ application or library to be used by C++ application only (not by C application, etc). Error-returning is more portable approach - you may return error codes to applications written on any programming language and even running on different computer. Of course nearly always OS requests report their status via error-codes (because it is natural to make them language-independent). And for that reason you have to deal with error-codes in every-day programming. BUT IMO planning error-handling policy of C++ application to be based on error-codes is just asking for trouble - the application becomes a totally unreadable mess. IMO the best way to deal with status codes in C++ application is using C++ wrapper functions/classes/methods to call error-returning functionality and if error is returned - throw exception (with status info embedded into exception class).
Some important notes and caveats:
In order to use exceptions as error-handling policy in a project (either big one or small one) it is important to have a strict policy of writing exception safe code. It basically means that every resource is acquired in constructor of some class and more importantly released in destructor (that will make sure you don't have resource leaks). And also you have to catch exceptions somewhere - usually in your root-level function (like main or window procedure or thread procedure, etc).
Consider this code:
SomeType* p = new SomeType;
some_list.push_back(p);
/* later element of some_list have to be delete-ed
after removing them from this list */
It is typical potential memory leak - if push_back throws an exception then dynamically allocated and constructed SomeType object is leaked.
Exception safe variant is this:
std::auto_ptr<SomeType> pa( new SomeType );
some_list.push_back(pa.get());
pa.release();
/* later elements of some_list have to be delete-ed
after removing them from this list */
Or:
boost::shared_ptr<SomeType> pa( new SomeType );
some_list.push_back(pa);
/* some_list is list of boost::shared_ptr<SomeType>
so everything is delete-ed automatically */
If you are using C++ standard templates, allocators, etc. you either write exception safe code (if you try/catch every single STL call the code becomes a mess) or leave the code full of potential resource leaks (that is unfortunately happen very often). True C++ application must be exception safe.
dongle->Connect()method. The underlaying C API of the dongle provides around 50 error codes and doesn't throw any exceptions. – ezpresso Jun 8 '11 at 14:24