Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent, no change at all
[simgrid.git] / src / java / simgrid / msg / HostNotFoundException.java
index 2449fccc0b8a2436e37ec8c9f2d5f8dd73545751..0a78238212bae25676b5779be50a272c7e962411 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 HostNotFoundException extends MsgException {
-       
-   private static final long serialVersionUID = 1L;
+
+  private static final long serialVersionUID = 1L;
 
    /**
     * Constructs an <code>HostNotFoundException</code> without a 
     * detail message. 
     */
-   public HostNotFoundException() {
-      super();
-   }
-   
+  public HostNotFoundException() {
+    super();
+  }
    /**
     * Constructs an <code>HostNotFoundException</code> with a detail message. 
     *
     * @param   s   the detail message.
-    */
-   public HostNotFoundException(String s) {
-      super(s);
-   }
-}
\ No newline at end of file
+    */ public HostNotFoundException(String s) {
+    super(s);
+  }
+}