X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8e67b024cf0592ddef06e37870b36d4a4dfe058b..198b09ec16ca1b8fc05053bcae9e75c0ad689711:/src/bindings/java/org/simgrid/msg/HostFailureException.java diff --git a/src/bindings/java/org/simgrid/msg/HostFailureException.java b/src/bindings/java/org/simgrid/msg/HostFailureException.java index 87e0661552..7070131571 100644 --- a/src/bindings/java/org/simgrid/msg/HostFailureException.java +++ b/src/bindings/java/org/simgrid/msg/HostFailureException.java @@ -1,19 +1,12 @@ -/* - * 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-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 HostFailureException with a detail message. - * - * @param s the detail message. - */ + /** Constructs an HostFailureException with a detail message. */ public HostFailureException(String s) { super(s); }