Logo AND Algorithmique Numérique Distribuée

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