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

io.github.wistefan.mapping.MappingException Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package io.github.wistefan.mapping;

/**
 * Exception to be thrown in case the mapping fails.
 */
public class MappingException extends RuntimeException {
	
	public MappingException(String message) {
		super(message);
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy