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 2449fcc..d0e852f 100644 (file)
@@ -1,34 +1,32 @@
 /*
- * $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 
  * 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 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);
-   }
-}
\ No newline at end of file
+       /** 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);
+       }
+}