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 <andrey.skori...@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);
+    }
+
+}

Reply via email to