Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / src / bindings / java / org / simgrid / msg / TimeoutException.java
1 /* Copyright (c) 2006-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package org.simgrid.msg;
7
8 /** Exception raised when sending a task timeouts */
9 public class TimeoutException extends MsgException {
10         private static final long serialVersionUID = 1L;
11
12         /** Constructs an <code>TimeoutFailureException</code> without a detail message. */
13         public TimeoutException() {
14                 super();
15         }
16         /** Constructs an <code>TransferFailureException</code> with a detail message. */
17         public TimeoutException(String s) {
18                 super(s);
19         }
20 }