X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e37c1e4bba9bb89cd2842f08cde998eb7f941d04..9bc324037f69be712c94ec11e077b6859277c067:/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 269eeb5f9d..13d69939ca 100644 --- a/src/bindings/java/org/simgrid/msg/HostNotFoundException.java +++ b/src/bindings/java/org/simgrid/msg/HostNotFoundException.java @@ -1,19 +1,11 @@ -/* - * This exception is raised when looking for a non-existing host. - * - * Copyright 2006-2012 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-2016. 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; @@ -21,11 +13,7 @@ public class HostNotFoundException extends MsgException { 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); }