From 783330183a9467a718d61db43d7fa372c149613e Mon Sep 17 00:00:00 2001 From: coldpeace Date: Tue, 23 Mar 2010 10:42:57 +0000 Subject: [PATCH] please add path to MakeFile git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7307 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- .../simgrid/msg/TaskCancelledException.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/java/simgrid/msg/TaskCancelledException.java diff --git a/src/java/simgrid/msg/TaskCancelledException.java b/src/java/simgrid/msg/TaskCancelledException.java new file mode 100644 index 0000000000..7c11d2a0b5 --- /dev/null +++ b/src/java/simgrid/msg/TaskCancelledException.java @@ -0,0 +1,32 @@ +/* + * This exception is raised when looking for a non-existing host. + * + * Copyright 2006,2007,2010 The SimGrid Team + * All right reserved. + * + * This program is free software; you can redistribute + * it and/or modify it under the terms of the license + * (GNU LGPL) which comes with this package. + */ + +package simgrid.msg; + +/** + * This exception is raised when task is cancelled. + */ +public class TaskCancelledException extends MsgException { + private static final long serialVersionUID = 1L; + + /** Constructs an TaskCancelledException without a detail message. */ + public TaskCancelledException() { + super(); + } + /** + * Constructs an TaskCancelledException with a detail message. + * + * @param s the detail message. + */ + public TaskCancelledException(String s) { + super(s); + } +} -- 2.20.1