Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b51c243999a2f1b4c2937658d3cb315b4bd07664
[simgrid.git] / src / bindings / java / org / simgrid / msg / ProcessNotFoundException.java
1 /* Copyright (c) 2006-2016. The SimGrid Team.  All rights reserved.         */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package org.simgrid.msg;
7
8 /** Exception raised when looking for a non-existing process. */
9 public class ProcessNotFoundException extends MsgException {
10         private static final long serialVersionUID = 1L;
11
12         /** Constructs an <code>ProcessNotFoundException</code> without a detail message. */
13         public ProcessNotFoundException() {
14                 super();
15         }
16         /** Constructs an <code>ProcessNotFoundException</code> with a detail message. */
17         public ProcessNotFoundException(String s) {
18                 super(s);
19         }
20 }