X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fmdsal-common-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Fapi%2Fdata%2FTransactionChainClosedException.java;fp=common%2Fmdsal-common-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Fapi%2Fdata%2FTransactionChainClosedException.java;h=0000000000000000000000000000000000000000;hb=6a192f0eeedc302ae0b506d04f9d79b34406aef5;hp=5e1b35dbe506cf909d1c1bac36f40eba85b99b5c;hpb=9b7b45acaefe4c28deb087cffbe36503a4e44381;p=mdsal.git diff --git a/common/mdsal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChainClosedException.java b/common/mdsal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChainClosedException.java deleted file mode 100644 index 5e1b35dbe5..0000000000 --- a/common/mdsal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/TransactionChainClosedException.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) 2014 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.common.api.data; - -/** - * Exception thrown when an attempt is made to open a new transaction in a closed - * chain. - */ -public final class TransactionChainClosedException extends IllegalStateException { - private static final long serialVersionUID = 1L; - - public TransactionChainClosedException(final String message) { - super(message); - } - - public TransactionChainClosedException(final String message, final Throwable cause) { - super(message, cause); - } -}