blob: 8b28f50f2e9d999c2183e59915cc92d12025fdb0 [file] [log] [blame]
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Thomas Vachuska95caba32016-04-04 10:42:05 -070016package org.onosproject.provider.of.flow.util;
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -070017
18/**
Sho SHIMIZUc17042d2015-05-28 12:07:23 -070019 * Thrown to indicate that no mapping for the input value is found.
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -070020 */
Sho SHIMIZUc17042d2015-05-28 12:07:23 -070021public class NoMappingFoundException extends RuntimeException {
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -070022 /**
23 * Creates an instance with the specified values.
24 *
Sho SHIMIZUc17042d2015-05-28 12:07:23 -070025 * @param input input value of mapping causing this exception
26 * @param output the desired class which the input value is mapped to
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -070027 */
Sho SHIMIZUc17042d2015-05-28 12:07:23 -070028 public NoMappingFoundException(Object input, Class<?> output) {
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -070029 super(String.format("No mapping found for %s when converting to %s", input, output.getName()));
30 }
31}