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

org.sklsft.generator.exception.InvalidFileException Maven / Gradle / Ivy

There is a newer version: 2.0.0-M2
Show newest version
package org.sklsft.generator.exception;

public class InvalidFileException extends RuntimeException {
	
	private static final long serialVersionUID = 1L;
	
	public InvalidFileException (String message) {
		super(message);
	}

	public InvalidFileException (String message, Throwable t) {
		super(message, t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy