X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f8e7b4cec7149a685b0a4a58ba56088613124377..6fbcdfade89b3812c24152c86f8aa3be510df7f2:/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 deleted file mode 100644 index c4c5c4f194..0000000000 --- a/src/bindings/java/org/simgrid/msg/ProcessNotFoundException.java +++ /dev/null @@ -1,20 +0,0 @@ -/* Copyright (c) 2006-2023. The SimGrid Team. All rights 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; - -/** Exception 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. */ - public ProcessNotFoundException(String s) { - super(s); - } -}