X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9932a0c0d2c44e34633c97a827b2b04d615cb4e9..d535c50c617ba838b99de4bd251a6ac076774d00:/src/bindings/java/org/simgrid/msg/MsgException.java diff --git a/src/bindings/java/org/simgrid/msg/MsgException.java b/src/bindings/java/org/simgrid/msg/MsgException.java index bebfe327f4..a4184b01e7 100644 --- a/src/bindings/java/org/simgrid/msg/MsgException.java +++ b/src/bindings/java/org/simgrid/msg/MsgException.java @@ -1,39 +1,22 @@ /* This exception is an abstract class grouping all MSG-related exceptions */ -/* Copyright (c) 2006-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2006-2018. 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 an abstract class grouping all MSG-related exceptions - * - * - */ +/** This exception is an abstract class grouping all MSG-related exceptions */ public abstract class MsgException extends Exception { private static final long serialVersionUID = 1L; - /** - * Constructs an MsgException without a - * detail message. - */ + /** Constructs an MsgException without a detail message. */ public MsgException() { super(); } - /** - * Constructs an MsgException with a detail message. - * - * @param s the detail message. - */ - public MsgException(String s) { - super(s); + /** Constructs an MsgException with a detail message. */ + public MsgException(String msg) { + super(msg); } }