]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.procore.server.environment/src/org/simantics/db/procore/server/environment/InstallException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.procore.server.environment / src / org / simantics / db / procore / server / environment / InstallException.java
diff --git a/bundles/org.simantics.db.procore.server.environment/src/org/simantics/db/procore/server/environment/InstallException.java b/bundles/org.simantics.db.procore.server.environment/src/org/simantics/db/procore/server/environment/InstallException.java
new file mode 100644 (file)
index 0000000..d5dea15
--- /dev/null
@@ -0,0 +1,48 @@
+/*******************************************************************************\r
+ * Copyright (c) 2010 Association for Decentralized Information Management\r
+ * in Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.db.procore.server.environment;\r
+\r
+import java.util.List;\r
+\r
+import org.simantics.db.procore.server.environment.windows.Product;\r
+\r
+\r
+/**\r
+ * @author Tuukka Lehtonen\r
+ */\r
+public class InstallException extends Exception {\r
+\r
+    private static final long serialVersionUID = -4189715696439554271L;\r
+\r
+    public List<Product> products;\r
+\r
+    public InstallException(List<Product> products) {\r
+        super();\r
+        this.products = products;\r
+    }\r
+\r
+    public InstallException(String message, List<Product> products) {\r
+        super(message);\r
+        this.products = products;\r
+    }\r
+\r
+    public InstallException(Throwable cause, List<Product> products) {\r
+        super(cause);\r
+        this.products = products;\r
+    }\r
+\r
+    public InstallException(String message, Throwable cause, List<Product> products) {\r
+        super(message, cause);\r
+        this.products = products;\r
+    }\r
+\r
+}\r