Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e7a89ead06dba3d174a227e8b3011642896b7dea
[simgrid.git] / src / java / simgrid / msg / MsgException.java
1 /*
2  * This exception is an abstract class grouping all MSG-related exceptions
3  *
4  * Copyright 2006,2007,2010 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 package simgrid.msg;
12 import java.lang.Exception;
13
14 /**
15  * This exception is an abstract class grouping all MSG-related exceptions
16   
17     \htmlonly <!-- 
18       DOXYGEN_NAVBAR_CHILD "HostNotFoundException"=classsimgrid_1_1msg_1_1HostNotFoundException.html
19       DOXYGEN_NAVBAR_CHILD "JniException"=classsimgrid_1_1msg_1_1JniException.html
20       DOXYGEN_NAVBAR_CHILD "NativeException"=classsimgrid_1_1msg_1_1NativeException.html
21       DOXYGEN_NAVBAR_CHILD "ProcessNotFoundException"=classsimgrid_1_1msg_1_1ProcessNotFoundException.html
22     --> \endhtmlonly 
23   
24  */
25 public abstract class MsgException extends Exception {
26   private static final long serialVersionUID = 1L;
27
28   /**
29    * Constructs an <code>MsgException</code> without a 
30    * detail message. 
31    */
32   public MsgException() {
33     super();
34   }
35   /**
36    * Constructs an <code>MsgException</code> with a detail message. 
37    *
38    * @param   s   the detail message.
39    */ public MsgException(String s) {
40     super(s);
41   }
42 }