Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
modifiers in right order
[simgrid.git] / src / bindings / java / org / simgrid / msg / HostNotFoundException.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 looking for a non-existing host. */
10 public class HostNotFoundException extends MsgException {
11         private static final long serialVersionUID = 1L;
12
13         /** Constructs an <code>HostNotFoundException</code> without a detail message. */ 
14         public HostNotFoundException() {
15                 super();
16         }
17         /** Constructs an <code>HostNotFoundException</code> with a detail message. */
18         public HostNotFoundException(String s) {
19                 super(s);
20         }
21 }