026c11cedac109e38db65612d94ad3559cf50968
[moon.git] /
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.aaa.api;
9
10 /*
11  * @author - Sharon Aicler (saichler@cisco.com)
12  */
13 public class IDMStoreException extends Exception {
14
15     private static final long serialVersionUID = -7534127680943957878L;
16
17     public IDMStoreException(Exception e) {
18         super(e);
19     }
20
21     public IDMStoreException(String msg) {
22         super(msg);
23     }
24 }