Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Trace useless files - Adrien
[simgrid.git] / org / simgrid / msg / HostFailureException.java
1 /*
2  * This exception is raised when looking for a non-existing host.
3  *
4  * Copyright 2006,2007,2010 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
12 package org.simgrid.msg;
13
14 /**
15  * This exception is raised when The host on which you are running has just been rebooted.
16  */
17 public class HostFailureException extends MsgException {
18         private static final long serialVersionUID = 1L;
19
20         /** Constructs an <code>HostFailureException</code> without a detail message. */ 
21         public HostFailureException() {
22                 super();
23         }
24         /**
25          * Constructs an <code>HostFailureException</code> with a detail message. 
26          *
27          * @param   s   the detail message.
28          */
29         public HostFailureException(String s) {
30                 super(s);
31         }
32 }