Logo AND Algorithmique Numérique Distribuée

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