X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..2d1f6b9a46d52289c1b52de4f0a7698f0085711a:/src/bindings/java/org/simgrid/msg/HostNotFoundException.java diff --git a/src/bindings/java/org/simgrid/msg/HostNotFoundException.java b/src/bindings/java/org/simgrid/msg/HostNotFoundException.java index 86b830e011..a90291791a 100644 --- a/src/bindings/java/org/simgrid/msg/HostNotFoundException.java +++ b/src/bindings/java/org/simgrid/msg/HostNotFoundException.java @@ -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-2021. 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 looking for a non-existing host. - */ +/** This exception is raised when looking for a non-existing host. */ public class HostNotFoundException extends MsgException { private static final long serialVersionUID = 1L; - /** Constructs an HostNotFoundException without a detail message. */ + /** Constructs an HostNotFoundException without a detail message. */ public HostNotFoundException() { super(); } - /** - * Constructs an HostNotFoundException with a detail message. - * - * @param s the detail message. - */ + /** Constructs an HostNotFoundException with a detail message. */ public HostNotFoundException(String s) { super(s); }