Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove Java bindings. They are not updated since maybe 10 years
[simgrid.git] / src / bindings / java / org / simgrid / msg / MsgException.java
diff --git a/src/bindings/java/org/simgrid/msg/MsgException.java b/src/bindings/java/org/simgrid/msg/MsgException.java
deleted file mode 100644 (file)
index 95e6904..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* This exception is an abstract class grouping all MSG-related exceptions */
-
-/* Copyright (c) 2006-2023. 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 an abstract class grouping all MSG-related exceptions */
-public abstract class MsgException extends Exception {
-       private static final long serialVersionUID = 1L;
-
-       /** Constructs an <code>MsgException</code> without a detail message. */
-       protected MsgException() {
-               super();
-       }
-       /** Constructs an <code>MsgException</code> with a detail message. */
-       protected MsgException(String msg) {
-               super(msg);
-       }
-}