Logo AND Algorithmique Numérique Distribuée

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