X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/964fa7d1a4b0fb183a02d8b0020d74b1255312e0..076a3598c93a73842a64c03a6707b2b941fd881c:/src/java/simgrid/msg/NativeException.java diff --git a/src/java/simgrid/msg/NativeException.java b/src/java/simgrid/msg/NativeException.java index 1841a026ae..96053b6d8f 100644 --- a/src/java/simgrid/msg/NativeException.java +++ b/src/java/simgrid/msg/NativeException.java @@ -8,25 +8,26 @@ * it and/or modify it under the terms of the license * (GNU LGPL) which comes with this package. */ - package simgrid.msg; +/** + * This exception is raised when there is an error within the SimGrid message. Refer to the string message for more info on what went wrong. + */ public class NativeException extends MsgException { - private static final long serialVersionUID = 1L; - /** - * Constructs an NativeException without a - * detail message. - */ + /* + * Constructs an NativeException without a + * detail message. + */ public NativeException() { super(); } - /** - * Constructs an NativeException with a detail message. - * - * @param s the detail message. - */ public NativeException(String s) { + /* + * Constructs an NativeException with a detail message. + * + * @param s the detail message. + */ public NativeException(String s) { super(s); } }