Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / osgi / NetconfOperationRouter.java
index 16cca1fee793c2f6996a5fa93c66e7a0fcaa513b..ab9a3ab1c49f83871f398ad110a67b7ca09e1cc7 100644 (file)
@@ -8,14 +8,14 @@
 
 package org.opendaylight.controller.netconf.impl.osgi;
 
-import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
+import org.opendaylight.controller.config.util.xml.DocumentedException;
 import org.opendaylight.controller.netconf.impl.NetconfServerSession;
 import org.w3c.dom.Document;
 
 public interface NetconfOperationRouter extends AutoCloseable {
 
     Document onNetconfMessage(Document message, NetconfServerSession session)
-            throws NetconfDocumentedException;
+            throws DocumentedException;
 
 
 }