Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the files generated by javasphinx in the git
[simgrid.git] / docs / source / java / org / simgrid / msg / ProcessKilledError.rst
1 class org.simgrid.msg.ProcessKilledError
2 ========================================
3
4 .. java:package:: org.simgrid.msg
5    :noindex:
6
7 .. java:type:: public class ProcessKilledError extends Error
8
9    Used internally to interrupt the user code when the process gets killed. \rst You can catch it for cleanups or to debug, but DO NOT BLOCK IT, or your simulation will segfault! .. code-block:: java try { getHost().off(); } catch (ProcessKilledError e) { e.printStackTrace(); throw e; } \endrst
10
11 Constructors
12 ------------
13 ProcessKilledError
14 ^^^^^^^^^^^^^^^^^^
15
16 .. java:constructor:: public ProcessKilledError(String s)
17    :outertype: ProcessKilledError
18