Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
various cleanups to the java bindings
[simgrid.git] / src / java / simgrid / msg / HostNotFoundException.java
index 0a78238..d0e852f 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Id$
+ * This exception is raised when looking for a non-existing host.
  *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier           
+ * Copyright 2006,2007,2010 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
 
 package simgrid.msg;
 
+/**
+ * This exception is raised when looking for a non-existing host.
+ */
 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();
-  }
-   /**
-    * Constructs an <code>HostNotFoundException</code> with a detail message. 
-    *
-    * @param   s   the detail message.
-    */ public HostNotFoundException(String s) {
-    super(s);
-  }
+       /** Constructs an <code>HostNotFoundException</code> without a detail message. */ 
+       public HostNotFoundException() {
+               super();
+       }
+       /**
+        * Constructs an <code>HostNotFoundException</code> with a detail message. 
+        *
+        * @param   s   the detail message.
+        */
+       public HostNotFoundException(String s) {
+               super(s);
+       }
 }