Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups
[simgrid.git] / src / java / simgrid / msg / Msg.java
index 15dffa1..40c9ea2 100644 (file)
@@ -77,7 +77,7 @@ public final class Msg {
         *
         * @see                    MSG_run, MSG_clean
         */
-       public final static native void run() throws NativeException;
+       public final static native void run() ;
 
        /**
         * The native implemented method to create the environment of the simulation.
@@ -85,14 +85,14 @@ public final class Msg {
         * @param platformFile    The XML file which contains the description of the environment of the simulation
         *
         */
-       public final static native void createEnvironment(String platformFile) throws NativeException;
+       public final static native void createEnvironment(String platformFile);
 
        /**
         * The method to deploy the simulation.
         *
         * @param platformFile    The XML file which contains the description of the application to deploy.
         */
-       public final static native void deployApplication(String deploymentFile) throws NativeException;
+       public final static native void deployApplication(String deploymentFile);
 
        /** Example launcher. You can use it or provide your own launcher, as you wish */
        static public void main(String[]args) throws MsgException {