X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3080c6b0d097d6b3b7d5b3dda0592154ce438f64..2d1f6b9a46d52289c1b52de4f0a7698f0085711a:/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 index 5f8e6d57e4..0000000000 --- a/src/bindings/java/org/simgrid/msg/StorageNotFoundException.java +++ /dev/null @@ -1,29 +0,0 @@ -/* This exception is raised when looking for a non-existing storage. */ - -/* Copyright (c) 2006-2014. 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 looking for a non-existing storage. - */ -public class StorageNotFoundException extends MsgException { - private static final long serialVersionUID = 1L; - - /** Constructs an StorageNotFoundException without a detail message. */ - public StorageNotFoundException() { - super(); - } - /** - * Constructs an StorageNotFoundException with a detail message. - * - * @param s the detail message. - */ - public StorageNotFoundException(String s) { - super(s); - } -}