Logo AND Algorithmique Numérique Distribuée

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