Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc' into mc++
[simgrid.git] / src / bindings / java / org / simgrid / msg / TimeoutException.java
1 /* This exception is raised when looking for a non-existing host. */
2
3 /* Copyright (c) 2006-2007, 2010, 2013-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 raised when time's out while sending tasks.
13  */
14 public class TimeoutException extends MsgException {
15         private static final long serialVersionUID = 1L;
16
17         /** Constructs an <code>TimeoutFailureException</code> without a detail message. */ 
18         public TimeoutException() {
19                 super();
20         }
21         /**
22          * Constructs an <code>TransferFailureException</code> with a detail message. 
23          *
24          * @param   s   the detail message.
25          */
26         public TimeoutException(String s) {
27                 super(s);
28         }
29 }