Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
be379800c661fe677532d6e87cf84908498d4d18
[simgrid.git] / src / java / simgrid / msg / MsgException.java
1 /*
2  * java.com.simgrid.msg.MsgException.java       1.00 07/05/01
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier           
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  
12 package simgrid.msg;
13
14 import java.lang.Exception;
15
16 public class MsgException extends Exception {
17         
18         private static final long serialVersionUID = 1L;
19
20     /**
21      * Constructs an <code>MsgException</code> without a 
22      * detail message. 
23      */
24     public MsgException() {
25         super();
26     }
27
28     /**
29      * Constructs an <code>MsgException</code> with a detail message. 
30      *
31      * @param   s   the detail message.
32      */
33     public MsgException(String s) {
34         super(s);
35     }
36 }