Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
only display logs of failed tests
[simgrid.git] / src / java / simgrid / msg / JniException.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier           
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 a problem within the bindings (in JNI). 
15  */
16 public class JniException extends MsgException {
17   private static final long serialVersionUID = 1L;
18
19
20   /*
21    * Constructs an <code>JniException</code> without a 
22    * detail message. 
23    */
24   public JniException() {
25     super();
26   }
27   /*
28    * Constructs an <code>JniException</code> with a detail message. 
29    *
30    * @param   s   the detail message.
31    */ public JniException(String s) {
32     super(s);
33 }}