What is the difference between std::runtime_error and std::exception? What is the appropriate use for each? Why are they different in the first place?
|
Just like The point of having this hierarchy is to give user the opportunity to use the full power of C++ exception handling mechanism. Since 'catch' clause can catch polymorphic exceptions, the user can write 'catch' clauses that can catch exception types from a specific subtree of the exeption hierarchy. For example, P.S. Designing a useful exception class hierarchy (that would let you catch only the exception types you are interested in at each point of your code) is a non-trivial task. What you see in standard C++ library is one possible approach, offered to you by the authors of the language. As you see, they decided to split all exception types into "runtime errors" and "logic errors" and let you proceeed from there with your own exception types. There are, of course, alternative ways to structure that hierarchy, which might be more appropriate in your design. |
|||||||||
|
|
std::exception should be consider (note the considered) the abstract base of the standard exception hierarchy. This is because there is no mechanism to pass in a specific message (to do this you must derive and specialize what()). There is nothing to stop you using std::exception and for simple application it may be all you need. std::runtime_error on the other hand has valid constructors that accept a string as a message. When what() is called a const char pointer is returned that points at a C string that has the same string as was passed into the constructor.
|
|||||||||||||
|
std::exception(std::string)is not available on non-MS compilers. So we gotta use a derived class such asstd::runtime_error(std::string)to throw with a string. – unixman83 Dec 28 '11 at 9:45