Logo AND Algorithmique Numérique Distribuée

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