Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
THROW Macro
                                              Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  THROW( exception_object_pointer );
 
  Parameter                  Description
 
  <exception_object_pointer> Points to an exception object derived from
                             CException.
 
  Remarks
 
  Throws the specified exception. It interrupts program execution, passing
  control to the associated CATCH block in your program. If you have not
  provided the CATCH block, then control is passed to a Microsoft
  Foundation class library module that prints an error message and exits.
 
  See Also
 
  TRY, CATCH, THROW_LAST, AND_CATCH, END_CATCH
 
 
                                     -♦-