Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Further cleanups of the Java bindings:
[simgrid.git] / src / java / simgrid / msg / NativeException.java
index 1841a02..96053b6 100644 (file)
@@ -8,25 +8,26 @@
  * it and/or modify it under the terms of the license 
  * (GNU LGPL) which comes with this package.
  */
-
 package simgrid.msg;
 
+/**
+ * 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.
+ */
 public class NativeException extends MsgException {
-
   private static final long serialVersionUID = 1L;
 
-   /**
-    * Constructs an <code>NativeException</code> without a 
-    * detail message. 
-    */
+  /*
+   * Constructs an <code>NativeException</code> without a 
+   * detail message. 
+   */
   public NativeException() {
     super();
   }
-   /**
-    * Constructs an <code>NativeException</code> with a detail message. 
-    *
-    * @param   s   the detail message.
-    */ public NativeException(String s) {
+  /*
+   * Constructs an <code>NativeException</code> with a detail message. 
+   *
+   * @param   s   the detail message.
+   */ public NativeException(String s) {
     super(s);
   }
 }