cz.jalasoft.util.configuration.exception.ConverterInstantiationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JalasoftUtils Show documentation
Show all versions of JalasoftUtils Show documentation
A collection of utility classes that might be useful.
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 extends StringConverter>> converterType;
public ConverterInstantiationException(Class extends StringConverter>> converter, Exception cause) {
super(cause);
this.converterType = converter;
}
public Class extends StringConverter>> converterType() {
return converterType;
}
}