X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1283307f26e739e654d195f81cceee5ce1683d99..8e67b024cf0592ddef06e37870b36d4a4dfe058b:/simgrid-java/org/simgrid/msg/ProcessNotFoundException.java diff --git a/simgrid-java/org/simgrid/msg/ProcessNotFoundException.java b/simgrid-java/org/simgrid/msg/ProcessNotFoundException.java deleted file mode 100644 index 284335c8c4..0000000000 --- a/simgrid-java/org/simgrid/msg/ProcessNotFoundException.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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 ProcessNotFoundException without a - * detail message. - */ - public ProcessNotFoundException() { - super(); - } - /** - * Constructs an ProcessNotFoundException with a detail message. - * - * @param s the detail message. - */ - public ProcessNotFoundException(String s) { - super(s); - } -}