X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fimpl%2Fosgi%2FNetconfOperationRouter.java;h=ab9a3ab1c49f83871f398ad110a67b7ca09e1cc7;hb=23fe9ca678ada6263fec5dd996f4025e4a32fcf5;hp=16cca1fee793c2f6996a5fa93c66e7a0fcaa513b;hpb=59a26f11e6f07d6b36aa820562ad00e367dcaa3b;p=controller.git diff --git a/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/osgi/NetconfOperationRouter.java b/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/osgi/NetconfOperationRouter.java index 16cca1fee7..ab9a3ab1c4 100644 --- a/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/osgi/NetconfOperationRouter.java +++ b/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/osgi/NetconfOperationRouter.java @@ -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; }