Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4c1b22674b8338abb5cbf9ac17279ee5e1d7ea3e
[simgrid.git] / src / java / simgrid / msg / TimeoutFailureException.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 simgrid.msg;
13
14 /**
15  * This exception is raised when time's out while sending tasks.
16  */
17 public class TimeoutFailureException extends MsgException {
18         private static final long serialVersionUID = 1L;
19
20         /** Constructs an <code>TimeoutFailureException</code> without a detail message. */ 
21         public TimeoutFailureException() {
22                 super();
23         }
24         /**
25          * Constructs an <code>TransferFailureException</code> with a detail message. 
26          *
27          * @param   s   the detail message.
28          */
29         public TimeoutFailureException(String s) {
30                 super(s);
31         }
32 }