X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e9105988280d1e88b5b496d6e2eed4c8d541883..bef9e56fd601b15454f003bb8d0b66db491ddf9f:/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 b41bd30e3d..c93ace1495 100644 --- a/src/bindings/java/org/simgrid/msg/MsgException.java +++ b/src/bindings/java/org/simgrid/msg/MsgException.java @@ -1,42 +1,22 @@ -/* - * This exception is an abstract class grouping all MSG-related exceptions - * - * Copyright 2006-2012 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. - */ +/* This exception is an abstract class grouping all MSG-related exceptions */ + +/* 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 an abstract class grouping all MSG-related exceptions - - \htmlonly \endhtmlonly - - */ +/** This exception is an abstract class grouping all MSG-related exceptions */ public abstract class MsgException extends Exception { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; - /** - * 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 without a detail message. */ + public MsgException() { + super(); + } + /** Constructs an MsgException with a detail message. */ + public MsgException(String msg) { + super(msg); + } }