I am most of the way to getting a robust Fortran system for web delivery of a set of applications (using Win32, not .Net), but I need to be sure that I have a FULL list of all possible exceptions. Just got caught out by INTEGER OVERFLOW, exception 15, omitted from the TRAP_EXCEPTION@ documentation in the latest version of the FTN95 help file.
Are there any other exceptions that are also undocumented?
I'm using PERMIT_UNDERFLOW@ but treating all other exceptions as unrecoverable, and really need to catch them all, as a dialog window on a web server will hang the server as there is no way to either display or respond to it.
I'm also using the /CHECK and /ZEROISE compiler options.
ps - is there any Win32 equivalent to the exception generator example for .Net that is given in the FTN95 help file? I have found an old set of demo programs for CHECKMATE from an old Salford Fortran installation, but this is far from complete. How can I force an access violation, for example?