You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by mi...@apache.org on 2022/11/15 23:36:54 UTC

[incubator-streampipes] 06/11: add exception class for if geometry type is not supported (multigeom atm)

This is an automated email from the ASF dual-hosted git repository.

micklich pushed a commit to branch STREAMPIPES-584
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit eac33c3e2175c9aad8fe09def117eea2fd5c0a1f
Author: micklich <fl...@mailbox.org>
AuthorDate: Sat Sep 17 20:31:20 2022 +0200

    add exception class for if geometry type is not supported (multigeom atm)
---
 .../SpNotSupportedGeometryException.java           | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/streampipes-extensions/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/exceptions/SpNotSupportedGeometryException.java b/streampipes-extensions/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/exceptions/SpNotSupportedGeometryException.java
new file mode 100755
index 000000000..459a650c8
--- /dev/null
+++ b/streampipes-extensions/streampipes-processors-geo-jvm/src/main/java/org/apache/streampipes/processors/geo/jvm/jts/exceptions/SpNotSupportedGeometryException.java
@@ -0,0 +1,23 @@
+package org.apache.streampipes.processors.geo.jvm.jts.exceptions;
+
+public class SpNotSupportedGeometryException extends Exception {
+
+  public SpNotSupportedGeometryException() {
+  }
+
+  public SpNotSupportedGeometryException(String message) {
+    super(message);
+  }
+
+  public SpNotSupportedGeometryException(String message, Throwable cause) {
+    super(message, cause);
+  }
+
+  public SpNotSupportedGeometryException(Throwable cause) {
+    super(cause);
+  }
+
+  public SpNotSupportedGeometryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
+    super(message, cause, enableSuppression, writableStackTrace);
+  }
+}
\ No newline at end of file