com.github.timo_reymann.csv_parser.exception.MappingException Maven / Gradle / Ivy
package com.github.timo_reymann.csv_parser.exception;
/**
* Error during mapping
*
* @author Timo Reymann
* @since 20.12.17
*/
public class MappingException extends RuntimeException {
/**
* Create mapping exception
*
* @param msg Message to display for the user
*/
public MappingException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy