Delete netconf
[controller.git] / opendaylight / netconf / netconf-impl / src / main / java / org / opendaylight / controller / netconf / impl / util / DeserializerExceptionHandler.java
diff --git a/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/util/DeserializerExceptionHandler.java b/opendaylight/netconf/netconf-impl/src/main/java/org/opendaylight/controller/netconf/impl/util/DeserializerExceptionHandler.java
deleted file mode 100644 (file)
index 15205e4..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco 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.netconf.impl.util;
-
-import com.google.common.collect.Maps;
-import io.netty.channel.ChannelHandler;
-import io.netty.channel.ChannelHandlerContext;
-import java.util.Map;
-import org.opendaylight.controller.config.util.xml.DocumentedException;
-import org.opendaylight.controller.netconf.util.messages.SendErrorExceptionUtil;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public final class DeserializerExceptionHandler implements ChannelHandler {
-
-    private static final Logger LOG = LoggerFactory.getLogger(DeserializerExceptionHandler.class);
-
-    @Override
-    public void handlerAdded(ChannelHandlerContext ctx) throws Exception {
-        // NOOP
-    }
-
-    @Override
-    public void handlerRemoved(ChannelHandlerContext ctx) throws Exception {
-        // NOOP
-    }
-
-    @Override
-    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
-        LOG.warn("An exception occurred during message handling", cause);
-        handleDeserializerException(ctx, cause);
-    }
-
-    private void handleDeserializerException(ChannelHandlerContext ctx, Throwable cause) {
-
-        Map<String, String> info = Maps.newHashMap();
-        info.put("cause", cause.getMessage());
-        DocumentedException ex = new DocumentedException(cause.getMessage(),
-                DocumentedException.ErrorType.rpc, DocumentedException.ErrorTag.malformed_message,
-                DocumentedException.ErrorSeverity.error, info);
-
-        SendErrorExceptionUtil.sendErrorMessage(ctx.channel(), ex);
-    }
-}