Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2023.
[simgrid.git] / src / bindings / java / org / simgrid / msg / HostFailureException.java
index 01eb5b9..2bb72cd 100644 (file)
@@ -1,28 +1,19 @@
-/* This exception is raised when looking for a non-existing host. */
-
-/* Copyright (c) 2006-2014. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2006-2023. 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;
 
-       /** Constructs an <code>HostFailureException</code> without a detail message. */ 
+       /** Constructs an <code>HostFailureException</code> without a detail message. */
        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);
        }