X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0188e2a2598ce57a4d21a3d7eb5f303aecaf0dd..27b0c1ee1d85c53f1d11bb2b8e539cd76e4cf437:/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 4a7053d9b3..0d4c8761e4 100644 --- a/src/bindings/java/org/simgrid/msg/TaskCancelledException.java +++ b/src/bindings/java/org/simgrid/msg/TaskCancelledException.java @@ -1,31 +1,19 @@ -/* - * 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 task is cancelled. - */ +/** Exception raised when a task is cancelled. */ public class TaskCancelledException extends MsgException { private static final long serialVersionUID = 1L; - /** Constructs an TaskCancelledException without a detail message. */ + /** Constructs an TaskCancelledException without a detail message. */ 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); }