]> AND Public Git Repository - simgrid.git/blobdiff - doc/gtut-tour-08-exceptions.doc
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use homogeneous dictionaries whenever possible.
[simgrid.git] / doc / gtut-tour-08-exceptions.doc
index 6a9c15c525503c5e05fb6b19b643e19052e324ae..057e9bf7fd409b7da5968d9b77f0895f10be8dfa 100644 (file)
@@ -54,7 +54,8 @@ its own arguments. So, you may have something like the following:
 Then, you simply add a #TRY/#CATCH block around your code:
 \verbatim TRY{ 
   /* your code */ 
-} CATCH(e) { 
+}
+CATCH(e) {
   /* error handling code */
 } \endverbatim