X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2e9105988280d1e88b5b496d6e2eed4c8d541883..bc48db087894fd960073b3120cebf90e6b2f8c02:/src/bindings/java/org/simgrid/msg/JniException.java diff --git a/src/bindings/java/org/simgrid/msg/JniException.java b/src/bindings/java/org/simgrid/msg/JniException.java index d9333a28e4..322ffde831 100644 --- a/src/bindings/java/org/simgrid/msg/JniException.java +++ b/src/bindings/java/org/simgrid/msg/JniException.java @@ -1,13 +1,11 @@ -/* - * This exception is raised when there is a problem within the bindings (in JNI). - * - * 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 raised when there is a problem within the bindings (in JNI). */ + +/* Copyright (c) 2006-2014. 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; /** @@ -18,20 +16,14 @@ public class JniException extends RuntimeException { private static final long serialVersionUID = 1L; - /** - * Constructs an JniException without a - * detail message. - */ + /** Constructs an JniException without a detail message. */ public JniException() { super(); } - /** - * Constructs an JniException with a detail message. - * - * @param s the detail message. - */ public JniException(String s) { + /** Constructs an JniException with a detail message. */ + public JniException(String s) { super(s); - } + } public JniException(String string, Exception e) { super(string,e); }