Bump upstreams for Silicon
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / netconf / schema / mapping / OSGiBaseNetconfSchemas.java
index a632745205bc515dd3a5ac9fb3cb773eec6b6fcf..87b57533c874b5f8ad0abe52fcdc18745b5e6991 100644 (file)
@@ -8,6 +8,7 @@
 package org.opendaylight.netconf.sal.connect.netconf.schema.mapping;
 
 import com.google.common.annotations.Beta;
+import org.opendaylight.yangtools.yang.model.parser.api.YangParserException;
 import org.opendaylight.yangtools.yang.model.parser.api.YangParserFactory;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
@@ -37,7 +38,7 @@ public final class OSGiBaseNetconfSchemas implements BaseNetconfSchemas {
     }
 
     @Activate
-    void activate() {
+    void activate() throws YangParserException {
         delegate = new DefaultBaseNetconfSchemas(parserFactory);
         LOG.info("Base NETCONF Schemas started");
     }