ELAN FT Support for BE
[vpnservice.git] / interfacemgr / interfacemgr-api / src / main / java / org / opendaylight / vpnservice / interfacemgr / exceptions / InterfaceNotFoundException.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.vpnservice.interfacemgr.exceptions;
9
10 public class InterfaceNotFoundException extends Exception {
11
12     /**
13      * 
14      */
15     private static final long serialVersionUID = 1L;
16
17     public InterfaceNotFoundException() {
18
19     }
20
21     public InterfaceNotFoundException(String message) {
22         super(message);
23     }
24
25 }