Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the supernovae exploded: let's split the archive and move bindings to separate packages
[simgrid.git] / src / java / simgrid / msg / HostNotFoundException.java
diff --git a/src/java/simgrid/msg/HostNotFoundException.java b/src/java/simgrid/msg/HostNotFoundException.java
deleted file mode 100644 (file)
index 0a78238..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier           
- * 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;
-
-public class HostNotFoundException extends MsgException {
-
-  private static final long serialVersionUID = 1L;
-
-   /**
-    * Constructs an <code>HostNotFoundException</code> without a 
-    * detail message. 
-    */
-  public HostNotFoundException() {
-    super();
-  }
-   /**
-    * Constructs an <code>HostNotFoundException</code> with a detail message. 
-    *
-    * @param   s   the detail message.
-    */ public HostNotFoundException(String s) {
-    super(s);
-  }
-}