Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Storage-kill: remove java bindings
[simgrid.git] / src / bindings / java / org / simgrid / msg / StorageNotFoundException.java
diff --git a/src/bindings/java/org/simgrid/msg/StorageNotFoundException.java b/src/bindings/java/org/simgrid/msg/StorageNotFoundException.java
deleted file mode 100644 (file)
index 4251ce0..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Copyright (c) 2006-2021. 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;
-
-/** Exception raised when looking for a non-existing storage. */
-public class StorageNotFoundException extends MsgException {
-       private static final long serialVersionUID = 1L;
-
-       /** Constructs an <code>StorageNotFoundException</code> without a detail message. */
-       public StorageNotFoundException() {
-               super();
-       }
-       /** Constructs an <code>StorageNotFoundException</code> with a detail message. */
-       public StorageNotFoundException(String s) {
-               super(s);
-       }
-}