Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / 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  *  <!--
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  *  -->
22  */
23 public abstract class MsgException extends Exception {
24   private static final long serialVersionUID = 1L;
25
26   /**
27    * Constructs an <code>MsgException</code> without a 
28    * detail message. 
29    */
30   public MsgException() {
31     super();
32   }
33   /**
34    * Constructs an <code>MsgException</code> with a detail message. 
35    *
36    * @param   s   the detail message.
37    */ 
38   public MsgException(String s) {
39     super(s);
40   }
41 }