]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulator.variable/src/org/simantics/simulator/variable/exceptions/NodeManagerException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.simulator.variable / src / org / simantics / simulator / variable / exceptions / NodeManagerException.java
1 /*******************************************************************************\r
2  * Copyright (c) 2013 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *     Semantum Oy - initial API and implementation\r
12  *******************************************************************************/\r
13 package org.simantics.simulator.variable.exceptions;\r
14 \r
15 /**\r
16  * Base class of all exceptions the node manager may throw.\r
17  */\r
18 public class NodeManagerException extends Exception {\r
19 \r
20         private static final long serialVersionUID = 2793910999721797223L;\r
21 \r
22         public NodeManagerException() {\r
23                 super();\r
24         }\r
25 \r
26         public NodeManagerException(String message, Throwable cause) {\r
27                 super(message, cause);\r
28         }\r
29 \r
30         public NodeManagerException(String message) {\r
31                 super(message);\r
32         }\r
33 \r
34         public NodeManagerException(Throwable cause) {\r
35                 super(cause);\r
36         }       \r
37         \r
38 }\r