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

com.github.dingey.mybatis.mapper.MapperException Maven / Gradle / Ivy

package com.github.dingey.mybatis.mapper;

/**
 * @author d
 */
public class MapperException extends RuntimeException {
	private static final long serialVersionUID = -5722497802821376449L;

	public MapperException(String message) {
		super(message);
	}

	public MapperException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy