X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2253e22f696c82ae032886f5522b894d481cb3bc..78c34e74fbe28d492254148c6b3d3fc2a37133f1:/src/java/simgrid/msg/ProcessNotFoundException.java diff --git a/src/java/simgrid/msg/ProcessNotFoundException.java b/src/java/simgrid/msg/ProcessNotFoundException.java index 081daed6be..e3c7df8e09 100644 --- a/src/java/simgrid/msg/ProcessNotFoundException.java +++ b/src/java/simgrid/msg/ProcessNotFoundException.java @@ -1,7 +1,7 @@ /* - * $Id$ + * This exception is raised when looking for a non-existing process. * - * Copyright 2006,2007 Martin Quinson, Malek Cherier + * Copyright 2006,2007,2010 The SimGrid Team * All right reserved. * * This program is free software; you can redistribute @@ -12,23 +12,24 @@ package simgrid.msg; /** - * This exception is raised when looking for a non-existing process. - */ + * This exception is raised when looking for a non-existing process. + */ public class ProcessNotFoundException extends MsgException { - private static final long serialVersionUID = 1L; + 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); - } + /** + * 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); + } }