blob: 898b286d91c86ba713e12aa813023b97736cf559 [file] [log] [blame]
Sho SHIMIZU43f65ed2015-05-28 11:59:06 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.provider.of.flow.impl;
17
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}