]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/exception/ApplicationException.java
Fail safe import fixes made by Antti
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / exception / ApplicationException.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.layer0.exception;
13
14 import org.simantics.db.exception.DatabaseException;
15
16 public class ApplicationException extends DatabaseException {
17
18         /**
19          * 
20          */
21         private static final long serialVersionUID = 1466406666063142184L;
22
23         public ApplicationException() {
24                 super();
25                 // TODO Auto-generated constructor stub
26         }
27
28         public ApplicationException(int... resources) {
29                 super(resources);
30                 // TODO Auto-generated constructor stub
31         }
32
33         public ApplicationException(String message, int... resources) {
34                 super(message, resources);
35                 // TODO Auto-generated constructor stub
36         }
37
38         public ApplicationException(String message, Throwable cause) {
39                 super(message, cause);
40                 // TODO Auto-generated constructor stub
41         }
42
43         public ApplicationException(String message) {
44                 super(message);
45                 // TODO Auto-generated constructor stub
46         }
47
48         public ApplicationException(Throwable cause) {
49                 super(cause);
50                 // TODO Auto-generated constructor stub
51         }
52         
53         
54
55 }
56