Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tidy the exceptions that can be raised by our Java code
[simgrid.git] / examples / java / cloud / migration / XVM.java
index 3cc30ea..10b3164 100644 (file)
@@ -40,11 +40,7 @@ public class XVM extends VM {
 
   public void start(){
     super.start();
-    try {
-      daemon.start();
-    } catch (HostNotFoundException e) {
-      e.printStackTrace();
-    }
+    daemon.start();
     this.setLoad(0);
   }