Binding v2 runtime - adapters - impl - operations
[mdsal.git] / binding2 / mdsal-binding2-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / api / DataTreeProducerBusyException.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.mdsal.binding.javav2.api;
10
11 import com.google.common.annotations.Beta;
12 import com.google.common.base.Preconditions;
13 import javax.annotation.Nonnull;
14
15 /**
16  * Exception indicating that the {@link DataTreeProducer} has an open user transaction and cannot be
17  * closed.
18  */
19 @Beta
20 public class DataTreeProducerBusyException extends DataTreeProducerException {
21
22     private static final long serialVersionUID = 1L;
23
24
25     public DataTreeProducerBusyException(@Nonnull final String message, @Nonnull final Throwable cause) {
26         super(Preconditions.checkNotNull(message, "message"), cause);
27     }
28
29     public DataTreeProducerBusyException(@Nonnull final String message) {
30         super(Preconditions.checkNotNull(message, "message"));
31     }
32 }