X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fc783dc02e4e1bf955b152713d1df4914ae3adb8..9e0cc75839bb97e7c5a4c25ed97dc53c8acdb011:/org/simgrid/msg/JniException.java diff --git a/org/simgrid/msg/JniException.java b/org/simgrid/msg/JniException.java index 6592ef5fc8..d9333a28e4 100644 --- a/org/simgrid/msg/JniException.java +++ b/org/simgrid/msg/JniException.java @@ -1,14 +1,14 @@ /* * This exception is raised when there is a problem within the bindings (in JNI). * - * Copyright 2006,2007,2010 The SimGrid Team + * 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. */ -package simgrid.msg; +package org.simgrid.msg; /** * This exception is raised when there is a problem within the bindings (in JNI). @@ -32,4 +32,7 @@ public class JniException extends RuntimeException { */ public JniException(String s) { super(s); } + public JniException(String string, Exception e) { + super(string,e); + } }