Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
96053b6d8f329f03a78c11f3f2069ea084aaeb39
[simgrid.git] / src / java / simgrid / msg / NativeException.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 an error within the SimGrid message. Refer to the string message for more info on what went wrong.
15  */
16 public class NativeException extends MsgException {
17   private static final long serialVersionUID = 1L;
18
19   /*
20    * Constructs an <code>NativeException</code> without a 
21    * detail message. 
22    */
23   public NativeException() {
24     super();
25   }
26   /*
27    * Constructs an <code>NativeException</code> with a detail message. 
28    *
29    * @param   s   the detail message.
30    */ public NativeException(String s) {
31     super(s);
32   }
33 }