blob: b3be21ec624eaf349e277a0cf803251c4cb7fbad [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/**
19 * Thrown to indicate that unsupported conversion occurs.
20 */
21public class UnsupportedConversionException extends RuntimeException {
22 /**
23 * Creates an instance with the specified values.
24 *
25 * @param input input value of conversion causing this exception
26 * @param output the desired class which the input value is converted to
27 */
28 public UnsupportedConversionException(Object input, Class<?> output) {
29 super(String.format("No mapping found for %s when converting to %s", input, output.getName()));
30 }
31}