Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1841a026ae527b18adb8df149da7ffb09eadfb9e
[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
12 package simgrid.msg;
13
14 public class NativeException extends MsgException {
15
16   private static final long serialVersionUID = 1L;
17
18    /**
19     * Constructs an <code>NativeException</code> without a 
20     * detail message. 
21     */
22   public NativeException() {
23     super();
24   }
25    /**
26     * Constructs an <code>NativeException</code> with a detail message. 
27     *
28     * @param   s   the detail message.
29     */ public NativeException(String s) {
30     super(s);
31   }
32 }