I have some special exception cases that I want to throw and catch, so I want to define my own exception classes.
What are the best practices for that? Should I inherit from std::exception or std::runtime_error?
|
2
|
I have some special exception cases that I want to throw and catch, so I want to define my own exception classes. What are the best practices for that? Should I inherit from
|
|||
|
|
|
|
Yes, it's good practice to inherit from If all the exceptions inherit some way from |
||||
|
|
|
In my opinion it doesn't matter if you inherit from std::exception or not. For me the most important thing about defining exceptions are:
|
||
|
|
|
|
Not that i'm a C++ developer, but one thing we did in our C# code is create a base class exception for our framework, and then log the exception thrown in the constructor, in our case using log4net.
Any derived exception just has to invoke it's base constructor and we get consistent exception logging throughout. Not a big deal, but useful. |
||
|
|
|
|
It is a good when exception is placed in some scope. For instance class Manipulation can declare inside exception classes Error. and catch them like
In such cases they can be just empty classes without any additional error information unless you design allows those exceptions fly much upper where you catch all standard exceptions. |
||
|
|
|
|
It doesn't make a big difference, since |
||
|
|