From 75baddbf62ae87c09a9654c4398408752cc9236b Mon Sep 17 00:00:00 2001 From: Allen Byrne <50328838+byrnHDF@users.noreply.github.com> Date: Thu, 11 Aug 2022 11:24:32 -0500 Subject: Fix Error examples (#1997) --- src/H5Emodule.h | 478 +++++++++++++++++++++++++------------------------------- 1 file changed, 211 insertions(+), 267 deletions(-) diff --git a/src/H5Emodule.h b/src/H5Emodule.h index f2e6d44..5abdb6a 100644 --- a/src/H5Emodule.h +++ b/src/H5Emodule.h @@ -84,24 +84,24 @@ * an error stack ID is needed as a parameter, \ref H5E_DEFAULT can be used to indicate the library’s default * stack. The first error record of the error stack, number #000, is produced by the API function itself and * is usually sufficient to indicate to the application what went wrong. - *
- * If an application calls \ref H5Tclose on a + *
|
+ *
- * An application can temporarily turn off error messages while “probing” a function. See the + * An application can temporarily turn off error messages while “probing” a function. See the * example below. - *
|
- *
- * Or automatic printing can be disabled altogether and error messages can be explicitly printed. - *
|
- *
- *
|
- *
- *
|
- *
- * The following example shows a user‐defined callback function. - *
|
- *
- * An error report shows both the library’s error record and the application’s error records. + *
|
+ *
- *
|
- *
- * The example below shows how an application creates an error class and error messages. - *
|
- *
- * The example below shows how an application closes error messages and unregisters the error - * class. - *
|
- *
- * The example below shows how an application pushes an error record onto the default error stack. - *
|
- *
- * The example below shows how an application registers the current error stack and - * creates an object handle to avoid another HDF5 function from clearing the error stack. - *
|
- *