Remove unused exceptions
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / jersey / providers / patch / JsonToPatchBodyReader.java
index 232a9a7c03ff4b5eeac6a67f2c3c8189395bab23..2b39c8a0d5c0bfdf4604f1a347544cd21c43d927 100644 (file)
@@ -66,7 +66,7 @@ public class JsonToPatchBodyReader extends AbstractToPatchBodyReader {
     @SuppressWarnings("checkstyle:IllegalCatch")
     @Override
     protected PatchContext readBody(final InstanceIdentifierContext<?> path, final InputStream entityStream)
-            throws IOException, WebApplicationException {
+            throws WebApplicationException {
         try {
             return readFrom(path, entityStream);
         } catch (final Exception e) {