Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
complete reorganisation of examples/smpi/NAS
[simgrid.git] / src / bindings / java / org / simgrid / msg / NativeException.java
1 /* This exception is raised when there is an error within the C world of SimGrid. */
2
3 /* Copyright (c) 2006-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 package org.simgrid.msg;
10
11 /**
12  * This exception is raised when there is an error within the C world of SimGrid. 
13  * Refer to the string message for more info on what went wrong.
14  */
15 public class NativeException extends MsgException {
16         private static final long serialVersionUID = 1L;
17
18         /**
19          * Constructs an <code>NativeException</code> with a detail message. 
20          *
21          * @param   s   the detail message.
22          */
23         public NativeException(String s) {
24                 super(s);
25         }
26 }