X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fnode%2Futils%2Fstream%2FInvalidNormalizedNodeStreamException.java;h=5d83d515ed3f3d27bd2b9f64f2a673d559b6ae4a;hp=da60496a22796113932a9e8c8231322c0c3cde48;hb=HEAD;hpb=20156b149d56b1b14a06d344366b8e1af1c22fe8 diff --git a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/InvalidNormalizedNodeStreamException.java b/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/InvalidNormalizedNodeStreamException.java deleted file mode 100644 index da60496a22..0000000000 --- a/opendaylight/md-sal/sal-clustering-commons/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/stream/InvalidNormalizedNodeStreamException.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.cluster.datastore.node.utils.stream; - -import java.io.IOException; - -/** - * Exception thrown from NormalizedNodeInputStreamReader when the input stream does not contain - * valid serialized data. - * - * @author Thomas Pantelis - */ -public class InvalidNormalizedNodeStreamException extends IOException { - private static final long serialVersionUID = 1L; - - public InvalidNormalizedNodeStreamException(String message) { - super(message); - } -}