All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.csveed.bean.conversion.ConversionException Maven / Gradle / Ivy

Go to download

Java toolkit for mapping CSV-to-Bean mapping and vice versa. Redirection to Introduction in 5 seconds!

There is a newer version: 0.8.2
Show newest version
package org.csveed.bean.conversion;

public abstract class ConversionException extends Exception {

    private String typeDescription;

    public ConversionException(String message, Class clazz) {
        this(message, clazz.getName(), null);
    }

    public ConversionException(String message, String typeDescription, Throwable exception) {
        super(message, exception);
        this.typeDescription = typeDescription;
    }

    public String getTypeDescription() {
        return typeDescription;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy