Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / bindings / java / org / simgrid / msg / HostFailureException.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package org.simgrid.msg;
8
9 /** This exception is raised when the host on which you are running has just been rebooted. */
10 public class HostFailureException extends MsgException {
11         private static final long serialVersionUID = 1L;
12
13         /** Constructs an <code>HostFailureException</code> without a detail message. */ 
14         public HostFailureException() {
15                 super();
16         }
17         /** Constructs an <code>HostFailureException</code> with a detail message. */
18         public HostFailureException(String s) {
19                 super(s);
20         }
21 }