Merge branch 'blueprint' from controller
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / DataTreeListeningException.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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 package org.opendaylight.mdsal.binding.api;
9
10 import com.google.common.base.Preconditions;
11 import javax.annotation.Nonnull;
12 import javax.annotation.Nullable;
13
14 /**
15  * Base exception for various causes why and {@link DataTreeListener} may be terminated by the
16  * {@link DataTreeService} implementation.
17  */
18 public class DataTreeListeningException extends Exception {
19
20
21     private static final long serialVersionUID = 1L;
22
23     public DataTreeListeningException(@Nonnull String message, @Nullable Throwable cause) {
24         super(Preconditions.checkNotNull(message, "message"), cause);
25     }
26
27     public DataTreeListeningException(@Nonnull String message) {
28         super(Preconditions.checkNotNull(message, "message"));
29     }
30 }