You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sk...@apache.org on 2018/10/26 12:18:45 UTC

[incubator-plc4x] 03/04: added UnsopportedOperationException

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

skorikov pushed a commit to branch feature/connection-metadata
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git

commit 19552c62320865eaddead8e18d61be155b3b8981
Author: Andrey Skorikov <an...@codecentric.de>
AuthorDate: Fri Oct 26 12:02:13 2018 +0200

    added UnsopportedOperationException
---
 .../java/api/exceptions/PlcUnsupportedOperationException.java    | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/plc4j/api/src/main/java/org/apache/plc4x/java/api/exceptions/PlcUnsupportedOperationException.java b/plc4j/api/src/main/java/org/apache/plc4x/java/api/exceptions/PlcUnsupportedOperationException.java
new file mode 100644
index 0000000..1039d0e
--- /dev/null
+++ b/plc4j/api/src/main/java/org/apache/plc4x/java/api/exceptions/PlcUnsupportedOperationException.java
@@ -0,0 +1,9 @@
+package org.apache.plc4x.java.api.exceptions;
+
+public class PlcUnsupportedOperationException extends PlcRuntimeException {
+
+    public PlcUnsupportedOperationException(String message) {
+        super(message);
+    }
+
+}