ELAN FT Support for BE
[vpnservice.git] / interfacemgr / interfacemgr-api / src / main / java / org / opendaylight / vpnservice / interfacemgr / exceptions / InterfaceServiceNotFoundException.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 InterfaceServiceNotFoundException extends Exception {
11
12     /**
13      * 
14      */
15     private static final long serialVersionUID = 1L;
16
17     public InterfaceServiceNotFoundException() {
18     }
19
20     public InterfaceServiceNotFoundException(String message) {
21         super(message);
22     }
23 }