Remove unused exceptions
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / jersey / providers / patch / XmlToPatchBodyReader.java
index 8364572de4874a2e2b8ca807e07375e9805eab32..bf452ec49f01f2a4781e7ccf0a40f44650bf6cc5 100644 (file)
@@ -76,7 +76,7 @@ public class XmlToPatchBodyReader extends AbstractToPatchBodyReader {
     @SuppressWarnings("checkstyle:IllegalCatch")
     @Override
     protected PatchContext readBody(final InstanceIdentifierContext<?> path, final InputStream entityStream)
-            throws IOException, WebApplicationException {
+            throws WebApplicationException {
         try {
             final Document doc = UntrustedXML.newDocumentBuilder().parse(entityStream);
             return parse(path, doc);