1 /*
2 * CSVeed (https://github.com/42BV/CSVeed)
3 *
4 * Copyright 2013-2023 CSVeed.
5 *
6 * All rights reserved. This program and the accompanying materials
7 * are made available under the terms of The Apache Software License,
8 * Version 2.0 which accompanies this distribution, and is available at
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 */
11 package org.csveed.bean.conversion;
12
13 /**
14 * The Class BeanPropertyConversionException.
15 */
16 public class BeanPropertyConversionException extends ConversionException {
17
18 /** The Constant serialVersionUID. */
19 private static final long serialVersionUID = 1L;
20
21 /**
22 * Instantiates a new bean property conversion exception.
23 *
24 * @param message
25 * the message
26 * @param propertyDescription
27 * the property description
28 * @param exception
29 * the exception
30 */
31 public BeanPropertyConversionException(String message, String propertyDescription, Throwable exception) {
32 super(message, propertyDescription, exception);
33 }
34
35 }