Logo AND Algorithmique Numérique Distribuée

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