Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mpoquet/simgrid
[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 /** This exception is raised when there is an error within the C world of SimGrid. */
12 public class NativeException extends MsgException {
13         private static final long serialVersionUID = 1L;
14
15         /** Constructs an <code>NativeException</code> with a detail message. */
16         public NativeException(String s) {
17                 super(s);
18         }
19 }