X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e9105988280d1e88b5b496d6e2eed4c8d541883..2d1f6b9a46d52289c1b52de4f0a7698f0085711a:/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..40fd934638 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-2021. 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); }