Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java sources (Java files) to src/bindings/java/org/.
[simgrid.git] / src / bindings / java / org / simgrid / msg / ProcessNotFoundException.java
diff --git a/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java b/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java
new file mode 100644 (file)
index 0000000..284335c
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * This exception is raised when looking for a non-existing process.
+ *
+ * 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 looking for a non-existing process.
+ */
+public class ProcessNotFoundException extends MsgException {
+       private static final long serialVersionUID = 1L;
+
+       /**
+        * Constructs an <code>ProcessNotFoundException</code> without a 
+        * detail message. 
+        */
+       public ProcessNotFoundException() {
+               super();
+       }
+       /**
+        * Constructs an <code>ProcessNotFoundException</code> with a detail message. 
+        *
+        * @param   s   the detail message.
+        */
+       public ProcessNotFoundException(String s) {
+               super(s);
+       }
+}