Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Java bindings. They are not updated since maybe 10 years
[simgrid.git] / 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
deleted file mode 100644 (file)
index d9333a2..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * 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.
- */
-package org.simgrid.msg;
-
-/**
- * This exception is 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 {
-       private static final long serialVersionUID = 1L;
-
-
-       /**
-        * Constructs an <code>JniException</code> without a 
-        * detail message. 
-        */
-       public JniException() {
-               super();
-       }
-       /**
-        * Constructs an <code>JniException</code> with a detail message. 
-        *
-        * @param   s   the detail message.
-        */ public JniException(String s) {
-                super(s);
-        }
-       public JniException(String string, Exception e) {
-               super(string,e);
-       }
-}