Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
throw the right exception corresponding to HostFailureException, TransferFailureException
[simgrid.git] / src / java / simgrid / msg / MsgException.java
index ad45da0..0699e48 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * java.com.simgrid.msg.MsgException.java      1.00 07/05/01
+ * This exception is an abstract class grouping all MSG-related exceptions
  *
- * 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 
@@ -25,18 +25,19 @@ import java.lang.Exception;
 public abstract class MsgException extends Exception {
   private static final long serialVersionUID = 1L;
 
-  /*
+  /**
    * Constructs an <code>MsgException</code> without a 
    * detail message. 
    */
   public MsgException() {
     super();
   }
-  /*
+  /**
    * Constructs an <code>MsgException</code> with a detail message. 
    *
    * @param   s   the detail message.
-   */ public MsgException(String s) {
+   */ 
+  public MsgException(String s) {
     super(s);
   }
 }