Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2449fccc0b8a2436e37ec8c9f2d5f8dd73545751
[simgrid.git] / src / java / simgrid / msg / HostNotFoundException.java
1 /*
2  * $Id$
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 public class HostNotFoundException extends MsgException {
15         
16    private static final long serialVersionUID = 1L;
17
18    /**
19     * Constructs an <code>HostNotFoundException</code> without a 
20     * detail message. 
21     */
22    public HostNotFoundException() {
23       super();
24    }
25    
26    /**
27     * Constructs an <code>HostNotFoundException</code> with a detail message. 
28     *
29     * @param   s   the detail message.
30     */
31    public HostNotFoundException(String s) {
32       super(s);
33    }
34 }