Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
166d5e3a766777ffbcde27bb6234a9863a3c47df
[simgrid.git] / src / bindings / java / org / simgrid / msg / MsgException.java
1 /* This exception is an abstract class grouping all MSG-related exceptions */
2
3 /* Copyright (c) 2006-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 package org.simgrid.msg;
10
11 /**
12  * This exception is an abstract class grouping all MSG-related exceptions
13  *
14  *  <!--
15  *    DOXYGEN_NAVBAR_CHILD "HostNotFoundException"=classsimgrid_1_1msg_1_1HostNotFoundException.html
16  *    DOXYGEN_NAVBAR_CHILD "JniException"=classsimgrid_1_1msg_1_1JniException.html
17  *    DOXYGEN_NAVBAR_CHILD "NativeException"=classsimgrid_1_1msg_1_1NativeException.html
18  *    DOXYGEN_NAVBAR_CHILD "ProcessNotFoundException"=classsimgrid_1_1msg_1_1ProcessNotFoundException.html
19  *  -->
20  */
21 public abstract class MsgException extends Exception {
22   private static final long serialVersionUID = 1L;
23
24   /**
25    * Constructs an <code>MsgException</code> without a 
26    * detail message. 
27    */
28   public MsgException() {
29     super();
30   }
31   /**
32    * Constructs an <code>MsgException</code> with a detail message. 
33    *
34    * @param   s   the detail message.
35    */ 
36   public MsgException(String s) {
37     super(s);
38   }
39 }