Merge "BUG-2218: Keep existing link augmentations during discovery process"
[controller.git] / opendaylight / adsal / clustering / services / src / main / java / org / opendaylight / controller / clustering / services / CacheListenerAddException.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 /**
11  * @file   CacheListenerAddException.java
12  *
13  * @brief  Describe an exception that is raised when the cache
14  * Listener being added fails for any reason
15  *
16  */
17 package org.opendaylight.controller.clustering.services;
18
19 /**
20  * Describe an exception that is raised when the cache
21  * Listener being added fails for any reason
22  */
23 public class CacheListenerAddException extends Exception {
24     private static final long serialVersionUID = 1L;
25
26     /**
27      * Instantiates a new cache listener add exception.
28      */
29     public CacheListenerAddException() {
30         super();
31     }
32 }