X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6de03ecc4e630732984a0673512a5d15fd75e270..HEAD:/src/bindings/java/org/simgrid/msg/HostFailureException.java diff --git a/src/bindings/java/org/simgrid/msg/HostFailureException.java b/src/bindings/java/org/simgrid/msg/HostFailureException.java deleted file mode 100644 index 01eb5b9775..0000000000 --- a/src/bindings/java/org/simgrid/msg/HostFailureException.java +++ /dev/null @@ -1,29 +0,0 @@ -/* This exception is raised when looking for a non-existing host. */ - -/* Copyright (c) 2006-2014. The SimGrid Team. - * All rights 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 org.simgrid.msg; - -/** - * This exception is raised when the host on which you are running has just been rebooted. - */ -public class HostFailureException extends MsgException { - private static final long serialVersionUID = 1L; - - /** Constructs an HostFailureException without a detail message. */ - public HostFailureException() { - super(); - } - /** - * Constructs an HostFailureException with a detail message. - * - * @param s the detail message. - */ - public HostFailureException(String s) { - super(s); - } -}