Q:
What is meant by exception specification?
Answer & Explanation
Answer: A) A function is limited to throwing only a specified list of exceptions.
Explanation: C++ provides a mechanism to ensure that a given function is limited to throwing only a specified list of exceptions. It is called as exception specification.
View Answer
Report Error
Discuss