Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / clustering / services / src / main / java / org / opendaylight / controller / clustering / services / CacheConfigException.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   CacheConfigException.java
12  *
13  * @brief  Describe an exception that is raised when the cache being
14  * allocated has configuration errors, like mismatch parameters are
15  * passed and so on.
16  *
17  *
18  */
19 package org.opendaylight.controller.clustering.services;
20
21 import java.lang.Exception;
22
23 /**
24  * Describe an exception that is raised when the cache being
25  * allocated has configuration errors, like mismatch parameters are
26  * passed and so on.
27  */
28 public class CacheConfigException extends Exception {
29
30     /**
31      * Instantiates a new cache config exception.
32      */
33     public CacheConfigException() {
34         super();
35     }
36 }