View Javadoc
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 NoConverterFoundException.
15   */
16  public class NoConverterFoundException extends ConversionException {
17  
18      /** The Constant serialVersionUID. */
19      private static final long serialVersionUID = 1L;
20  
21      /**
22       * Instantiates a new no converter found exception.
23       *
24       * @param message
25       *            the message
26       * @param propertyType
27       *            the property type
28       */
29      public NoConverterFoundException(String message, Class propertyType) {
30          super(message, propertyType);
31      }
32  
33  }