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

com.github.ffpojo.exception.FFPojoException Maven / Gradle / Ivy

The newest version!
package com.github.ffpojo.exception;

public class FFPojoException extends Exception {
	private static final long serialVersionUID = 1L;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy