Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java sources (Java files) to src/bindings/java/org/.
[simgrid.git] / simgrid-java / org / simgrid / msg / ProcessKilledError.java
diff --git a/simgrid-java/org/simgrid/msg/ProcessKilledError.java b/simgrid-java/org/simgrid/msg/ProcessKilledError.java
deleted file mode 100644 (file)
index 5f7e327..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * 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 error class is only used to interrupt the java user code 
- * when the process gets killed by an external event.
- * Don't catch it.
- */
-
-public class ProcessKilledError extends Error {
-       private static final long serialVersionUID = 1L;
-       public ProcessKilledError(String s) {
-               super(s);
-       }
-}