X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..6fbcdfade89b3812c24152c86f8aa3be510df7f2:/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 1529c37ef2..0000000000 --- a/src/bindings/java/org/simgrid/msg/HostFailureException.java +++ /dev/null @@ -1,20 +0,0 @@ -/* Copyright (c) 2006-2019. 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. */ - public HostFailureException(String s) { - super(s); - } -}