If a class inherits from another and overrides a virtual function, how must the exception-specification for the derived (overridden) function be related to the base function?
Is that is must be at least as restrictive? right? or others?
|
If a class inherits from another and overrides a virtual function, how must the exception-specification for the derived (overridden) function be related to the base function? Is that is must be at least as restrictive? right? or others? |
||||
| show 2 more comments |
|
Yes, it must be at least as restrictive (ยง15.4/3):
|
|||||
|
|
It is $15.4 p.5 in http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf: "If a virtual function has an exception-specification, all declarations, including the definition, of any function that overrides that virtual function in any derived class shall only allow exceptions that are allowed by the exception-specification of the base class virtual function" |
|||
|
|
compile timefor contract violations in the interface. I rarely want my application to abort at runtime because of an exception (though I may want it to unroll the stack and exit). – Loki Astari Mar 14 '11 at 11:34