]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.district.maps/src/org/simantics/maps/wms/ServiceException.java
Share some projects for Simantics District
[simantics/district.git] / org.simantics.district.maps / src / org / simantics / maps / wms / ServiceException.java
diff --git a/org.simantics.district.maps/src/org/simantics/maps/wms/ServiceException.java b/org.simantics.district.maps/src/org/simantics/maps/wms/ServiceException.java
new file mode 100644 (file)
index 0000000..35234c0
--- /dev/null
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * Copyright (c) 2012 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.maps.wms;
+
+/**
+ * Represents a failure in web service execution.
+ * 
+ * @author Tuukka Lehtonen
+ */
+public class ServiceException extends RuntimeException {
+
+    private static final long serialVersionUID = 6031083247533593501L;
+
+    public ServiceException() {
+        super();
+    }
+
+    public ServiceException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public ServiceException(String message) {
+        super(message);
+    }
+
+    public ServiceException(Throwable cause) {
+        super(cause);
+    }
+
+}