X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d0ffc37686edcc803601f76ab51fdfed5fc2f241..ea74f5d95928a521a588737e81f1de94eef25d19:/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java diff --git a/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java b/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java index 19047e4e1e..2e1b30c7c1 100644 --- a/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java +++ b/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java @@ -1,34 +1,19 @@ -/* - * This exception is raised when looking for a non-existing process. - * - * Copyright (c) 2006-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-2022. 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 looking for a non-existing process. - */ +/** Exception raised when looking for a non-existing process. */ public class ProcessNotFoundException extends MsgException { private static final long serialVersionUID = 1L; - /** - * Constructs an ProcessNotFoundException without a - * detail message. - */ + /** Constructs an ProcessNotFoundException without a detail message. */ public ProcessNotFoundException() { super(); } - /** - * Constructs an ProcessNotFoundException with a detail message. - * - * @param s the detail message. - */ + /** Constructs an ProcessNotFoundException with a detail message. */ public ProcessNotFoundException(String s) { super(s); }