Transcription: In this example, Exception is a base Exception class from which the class MathAccept is derived. Notice that the exception specification of the function Divide lets it throw only exceptions of type Exception and that the handler in Main catches only exceptions of type Exception. Since a MathAccept object is an exception object, the MathAccept exception can be thrown and caught.