X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2253e22f696c82ae032886f5522b894d481cb3bc..78c34e74fbe28d492254148c6b3d3fc2a37133f1:/src/java/simgrid/msg/HostNotFoundException.java diff --git a/src/java/simgrid/msg/HostNotFoundException.java b/src/java/simgrid/msg/HostNotFoundException.java index e39018f03e..d0e852f282 100644 --- a/src/java/simgrid/msg/HostNotFoundException.java +++ b/src/java/simgrid/msg/HostNotFoundException.java @@ -1,7 +1,7 @@ /* - * $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 @@ -15,22 +15,18 @@ 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 HostNotFoundException without a - * detail message. - */ - public HostNotFoundException() { - super(); - } - /* - * Constructs an HostNotFoundException with a detail message. - * - * @param s the detail message. - */ - public HostNotFoundException(String s) { - super(s); - } + /** Constructs an HostNotFoundException without a detail message. */ + public HostNotFoundException() { + super(); + } + /** + * Constructs an HostNotFoundException with a detail message. + * + * @param s the detail message. + */ + public HostNotFoundException(String s) { + super(s); + } }