Link to home
Start Free TrialLog in
Avatar of Wookie68
Wookie68Flag for United States of America

asked on

Error Handling in C++

What other ways are available for error handling in C++ besides throwiing an exception? Is one type better to use than the other? What kind of scenarios would they be used in?
ASKER CERTIFIED SOLUTION
Avatar of jkr
jkr
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You can always create wrapper that will turn error code into exception or exception into error code.