Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent, no change at all
[simgrid.git] / src / java / simgrid / msg / MsgException.java
index be379800c661fe677532d6e87cf84908498d4d18..5549481e6f5a1a8a2f1961c74219f929c5061ba8 100644 (file)
@@ -8,29 +8,27 @@
  * it and/or modify it under the terms of the license 
  *(GNU LGPL) which comes with this package. 
  */
+
 package simgrid.msg;
 
 import java.lang.Exception;
 
 public class MsgException extends Exception {
-       
-       private static final long serialVersionUID = 1L;
+
+  private static final long serialVersionUID = 1L;
 
     /**
      * Constructs an <code>MsgException</code> without a 
      * detail message. 
      */
-    public MsgException() {
-       super();
-    }
-
+  public MsgException() {
+    super();
+  }
     /**
      * Constructs an <code>MsgException</code> with a detail message. 
      *
      * @param   s   the detail message.
-     */
-    public MsgException(String s) {
-       super(s);
-    }
-}
\ No newline at end of file
+     */ public MsgException(String s) {
+    super(s);
+  }
+}