Prepare for odlparent 3.0.0 checkstyle rules
[lispflowmapping.git] / mappingservice / neutron / src / main / java / org / opendaylight / lispflowmapping / neutron / intenthandler / exception / RlocNotFoundOnVppNode.java
1 /*
2  * Copyright (c) 2017 Cisco Systems, Inc.  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.lispflowmapping.neutron.intenthandler.exception;
9
10 /**
11  * Created by Shakib Ahmed on 1/12/17.
12  */
13 public class RlocNotFoundOnVppNode extends RuntimeException {
14     private static final String MESSAGE = "No available interface found on node ";
15
16     public RlocNotFoundOnVppNode(String hostId) {
17         super(MESSAGE + hostId);
18     }
19
20     public RlocNotFoundOnVppNode(String hostId, Throwable cause) {
21         super(MESSAGE + hostId, cause);
22     }
23 }