X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8e67b024cf0592ddef06e37870b36d4a4dfe058b..bef9e56fd601b15454f003bb8d0b66db491ddf9f:/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 edd4091f03..d4a3ed0365 100644 --- a/src/bindings/java/org/simgrid/msg/TimeoutException.java +++ b/src/bindings/java/org/simgrid/msg/TimeoutException.java @@ -1,19 +1,11 @@ -/* - * This exception is raised when looking for a non-existing host. - * - * Copyright 2006,2007,2010 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 time's out while sending tasks. - */ +/** Exception raised when sending a task timeouts */ public class TimeoutException extends MsgException { private static final long serialVersionUID = 1L; @@ -21,11 +13,7 @@ public class TimeoutException extends MsgException { 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); }