001/*
002 * Copyright 2002-2012 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      https://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package org.springframework.beans;
018
019import java.beans.PropertyChangeEvent;
020
021/**
022 * Exception thrown when no suitable editor or converter can be found for a bean property.
023 *
024 * @author Arjen Poutsma
025 * @author Juergen Hoeller
026 * @since 3.0
027 */
028@SuppressWarnings("serial")
029public class ConversionNotSupportedException extends TypeMismatchException {
030
031        /**
032         * Create a new ConversionNotSupportedException.
033         * @param propertyChangeEvent the PropertyChangeEvent that resulted in the problem
034         * @param requiredType the required target type (or {@code null} if not known)
035         * @param cause the root cause (may be {@code null})
036         */
037        public ConversionNotSupportedException(PropertyChangeEvent propertyChangeEvent,
038                        Class<?> requiredType, Throwable cause) {
039                super(propertyChangeEvent, requiredType, cause);
040        }
041
042        /**
043         * Create a new ConversionNotSupportedException.
044         * @param value the offending value that couldn't be converted (may be {@code null})
045         * @param requiredType the required target type (or {@code null} if not known)
046         * @param cause the root cause (may be {@code null})
047         */
048        public ConversionNotSupportedException(Object value, Class<?> requiredType, Throwable cause) {
049                super(value, requiredType, cause);
050        }
051
052}