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

cz.jalasoft.util.configuration.exception.ConverterInstantiationException Maven / Gradle / Ivy

The newest version!
package cz.jalasoft.util.configuration.exception;

import cz.jalasoft.util.converter.string.StringConverter;

/**
 * @author Honza Lastovicka ([email protected])
 * @since 2016-07-31.
 */
public final class ConverterInstantiationException extends RuntimeException {

    private final Class> converterType;

    public ConverterInstantiationException(Class> converter, Exception cause) {
        super(cause);

        this.converterType = converter;
    }

    public Class> converterType() {
        return converterType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy