Logo AND Algorithmique Numérique Distribuée

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