Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Somehow fix the killing of actors in Java
[simgrid.git] / src / bindings / java / org / simgrid / msg / MsgException.java
index e683264..a4184b0 100644 (file)
@@ -1,7 +1,6 @@
 /* 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. */
@@ -16,7 +15,7 @@ public abstract class MsgException extends Exception {
        public MsgException() {
                super();
        }
-       /** Constructs an <code>MsgException</code> with a detail message. */ 
+       /** Constructs an <code>MsgException</code> with a detail message. */
        public MsgException(String msg) {
                super(msg);
        }