Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[simgrid.git] / src / bindings / java / org / simgrid / msg / TaskCancelledException.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 task is cancelled.
13  */
14 public class TaskCancelledException extends MsgException {
15         private static final long serialVersionUID = 1L;
16
17         /** Constructs an <code>TaskCancelledException</code> without a detail message. */ 
18         public TaskCancelledException() {
19                 super();
20         }
21         /**
22          * Constructs an <code>TaskCancelledException</code> with a detail message. 
23          *
24          * @param   s   the detail message.
25          */
26         public TaskCancelledException(String s) {
27                 super(s);
28         }
29 }