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

org.pptx4j.Pptx4jException Maven / Gradle / Ivy

package org.pptx4j;

public class Pptx4jException extends Exception {

	public Pptx4jException(String msg) {
		super(msg);
	}
	
	public Pptx4jException(String msg, Exception e) {
		super(msg, e);
	}

	public Pptx4jException(String msg, Throwable t) {
		super(msg, t);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy