Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / RequestVoteReply.java
index af208ec85b70040327aaa96e7d0798a1e19375c6..9b7a2f34566342ecd86a52aec1e96ef783f4b9ef 100644 (file)
@@ -59,7 +59,7 @@ public final class RequestVoteReply extends AbstractRaftRPC {
         }
 
         @Override
-        public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
+        public void readExternal(ObjectInput in) throws IOException {
             long term = in.readLong();
             boolean voteGranted = in.readBoolean();