X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..ff976abdc0f201064cd0fb608c39990ba2656561:/src/bindings/java/org/simgrid/msg/TaskCancelledException.java diff --git a/src/bindings/java/org/simgrid/msg/TaskCancelledException.java b/src/bindings/java/org/simgrid/msg/TaskCancelledException.java index 950899d137..d63f7a1970 100644 --- a/src/bindings/java/org/simgrid/msg/TaskCancelledException.java +++ b/src/bindings/java/org/simgrid/msg/TaskCancelledException.java @@ -1,16 +1,11 @@ -/* This exception is raised when looking for a non-existing host. */ - -/* Copyright (c) 2006-2007, 2010, 2013-2014. The SimGrid Team. - * All rights reserved. */ +/* 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 task is cancelled. - */ +/** Exception raised when a task is cancelled. */ public class TaskCancelledException extends MsgException { private static final long serialVersionUID = 1L; @@ -18,11 +13,7 @@ public class TaskCancelledException extends MsgException { public TaskCancelledException() { super(); } - /** - * Constructs an TaskCancelledException with a detail message. - * - * @param s the detail message. - */ + /** Constructs an TaskCancelledException with a detail message. */ public TaskCancelledException(String s) { super(s); }