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

com.jeesuite.common2.excel.ExcelOperBaseException Maven / Gradle / Ivy

The newest version!
package com.jeesuite.common2.excel;

public class ExcelOperBaseException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public ExcelOperBaseException() {}
	
	public ExcelOperBaseException(String message) {
		super(message);
	}
	
	public ExcelOperBaseException(Throwable cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy