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
021import org.springframework.lang.Nullable;
022
023/**
024 * Exception thrown when no suitable editor or converter can be found for a bean property.
025 *
026 * @author Arjen Poutsma
027 * @author Juergen Hoeller
028 * @since 3.0
029 */
030@SuppressWarnings("serial")
031public class ConversionNotSupportedException extends TypeMismatchException {
032
033        /**
034         * Create a new ConversionNotSupportedException.
035         * @param propertyChangeEvent the PropertyChangeEvent that resulted in the problem
036         * @param requiredType the required target type (or {@code null} if not known)
037         * @param cause the root cause (may be {@code null})
038         */
039        public ConversionNotSupportedException(PropertyChangeEvent propertyChangeEvent,
040                        @Nullable Class<?> requiredType, @Nullable Throwable cause) {
041                super(propertyChangeEvent, requiredType, cause);
042        }
043
044        /**
045         * Create a new ConversionNotSupportedException.
046         * @param value the offending value that couldn't be converted (may be {@code null})
047         * @param requiredType the required target type (or {@code null} if not known)
048         * @param cause the root cause (may be {@code null})
049         */
050        public ConversionNotSupportedException(@Nullable Object value, @Nullable Class<?> requiredType, @Nullable Throwable cause) {
051                super(value, requiredType, cause);
052        }
053
054}