Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / org / simgrid / msg / HostFailureException.java
index cc328f5..7070131 100644 (file)
@@ -1,19 +1,12 @@
-/*
- * This exception is raised when looking for a non-existing host.
- *
- * Copyright (c) 2006-2013. 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.
- */
+/* Copyright (c) 2006-2014. The SimGrid Team.
+ * All rights 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 org.simgrid.msg;
 
-/**
- * This exception is raised when the host on which you are running has just been rebooted.
- */
+/** This exception is raised when the host on which you are running has just been rebooted. */
 public class HostFailureException extends MsgException {
        private static final long serialVersionUID = 1L;
 
@@ -21,11 +14,7 @@ public class HostFailureException extends MsgException {
        public HostFailureException() {
                super();
        }
-       /**
-        * Constructs an <code>HostFailureException</code> with a detail message. 
-        *
-        * @param   s   the detail message.
-        */
+       /** Constructs an <code>HostFailureException</code> with a detail message. */
        public HostFailureException(String s) {
                super(s);
        }