]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/exception/ApplicationException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / exception / ApplicationException.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 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  *******************************************************************************/\r
12 package org.simantics.db.layer0.exception;\r
13 \r
14 import org.simantics.db.exception.DatabaseException;\r
15 \r
16 public class ApplicationException extends DatabaseException {\r
17 \r
18         /**\r
19          * \r
20          */\r
21         private static final long serialVersionUID = 1466406666063142184L;\r
22 \r
23         public ApplicationException() {\r
24                 super();\r
25                 // TODO Auto-generated constructor stub\r
26         }\r
27 \r
28         public ApplicationException(int... resources) {\r
29                 super(resources);\r
30                 // TODO Auto-generated constructor stub\r
31         }\r
32 \r
33         public ApplicationException(String message, int... resources) {\r
34                 super(message, resources);\r
35                 // TODO Auto-generated constructor stub\r
36         }\r
37 \r
38         public ApplicationException(String message, Throwable cause) {\r
39                 super(message, cause);\r
40                 // TODO Auto-generated constructor stub\r
41         }\r
42 \r
43         public ApplicationException(String message) {\r
44                 super(message);\r
45                 // TODO Auto-generated constructor stub\r
46         }\r
47 \r
48         public ApplicationException(Throwable cause) {\r
49                 super(cause);\r
50                 // TODO Auto-generated constructor stub\r
51         }\r
52         \r
53         \r
54 \r
55 }\r
56 \r