X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fapi%2FDOMDataTreeListeningException.java;fp=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fdom%2Fapi%2FDOMDataTreeListeningException.java;h=0000000000000000000000000000000000000000;hp=435257d3a202378f3da412dcf89222e716f51c69;hb=751776589ce049c9c1c611d06335599b92087ee6;hpb=0b161730fd648bfa4c953e84b2d6a66972bc4da2 diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeListeningException.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeListeningException.java deleted file mode 100644 index 435257d3a2..0000000000 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeListeningException.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2015 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.md.sal.dom.api; - -/** - * Base exception for various causes why and {@link DOMDataTreeListener} - * may be terminated by the {@link DOMDataTreeService} implementation. - * - * @deprecated Use {@link org.opendaylight.mdsal.dom.api.DOMDataTreeListeningException} instead. - */ -@Deprecated -public class DOMDataTreeListeningException extends Exception { - private static final long serialVersionUID = 1L; - - public DOMDataTreeListeningException(final String message) { - super(message); - } - - public DOMDataTreeListeningException(final String message, final Throwable cause) { - super(message, cause); - } -}