Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[doc] users can also declare variable with colors for the trace
[simgrid.git] / doc / gtut-tour-08-exceptions.doc
index 6a9c15c..057e9bf 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