X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bdfe4f8674f98efbf2d67ad854ef83a1d5f855ed..b8df87e176f27b25534f27d7e240defa32ca35bc:/src/bindings/java/org/simgrid/msg/TimeoutException.java diff --git a/src/bindings/java/org/simgrid/msg/TimeoutException.java b/src/bindings/java/org/simgrid/msg/TimeoutException.java index b6b3c3bf21..3f0b92ab46 100644 --- a/src/bindings/java/org/simgrid/msg/TimeoutException.java +++ b/src/bindings/java/org/simgrid/msg/TimeoutException.java @@ -1,31 +1,19 @@ -/* - * This exception is raised when looking for a non-existing host. - * - * Copyright (c) 2006-2007, 2010, 2013. 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-2019. 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 time's out while sending tasks. - */ +/** Exception raised when sending a task timeouts */ public class TimeoutException extends MsgException { private static final long serialVersionUID = 1L; - /** Constructs an TimeoutFailureException without a detail message. */ + /** Constructs an TimeoutFailureException without a detail message. */ public TimeoutException() { super(); } - /** - * Constructs an TransferFailureException with a detail message. - * - * @param s the detail message. - */ + /** Constructs an TransferFailureException with a detail message. */ public TimeoutException(String s) { super(s); }