Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fd2667eda743d2d411c618085c3ae3db2348b08a
[simgrid.git] / src / bindings / java / org / simgrid / msg / StorageNotFoundException.java
1 /* Copyright (c) 2006-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package org.simgrid.msg;
7
8 /** Exception raised when looking for a non-existing storage. */
9 public class StorageNotFoundException extends MsgException {
10         private static final long serialVersionUID = 1L;
11
12         /** Constructs an <code>StorageNotFoundException</code> without a detail message. */
13         public StorageNotFoundException() {
14                 super();
15         }
16         /** Constructs an <code>StorageNotFoundException</code> with a detail message. */
17         public StorageNotFoundException(String s) {
18                 super(s);
19         }
20 }