Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / src / bindings / java / org / simgrid / msg / JniException.java
index 322ffde..d435891 100644 (file)
@@ -1,7 +1,6 @@
 /* This exception is raised when there is a problem within the bindings (in JNI). */
 
-/* Copyright (c) 2006-2014. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2006-2020. 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. */
@@ -9,7 +8,8 @@
 package org.simgrid.msg;
 
 /**
- * This exception is raised when there is a problem within the bindings (in JNI). 
+ * Exception raised when there is a problem within the bindings (in JNI).
+ *
  * That's a RuntimeException: I guess nobody wants to survive a JNI error in SimGrid
  */
 public class JniException extends RuntimeException {
@@ -20,7 +20,7 @@ public class JniException extends RuntimeException {
        public JniException() {
                super();
        }
-       /** Constructs an <code>JniException</code> with a detail message. */ 
+       /** Constructs an <code>JniException</code> with a detail message. */
        public JniException(String s) {
                 super(s);
        }