
io.gitee.ludii.excel.exceptions.ExcelException Maven / Gradle / Ivy
/*
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package io.gitee.ludii.excel.exceptions;
/**
* Excel Exception
*
* @author ThinkGem
*/
public class ExcelException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ExcelException() {
super();
}
public ExcelException(String message) {
super(message);
}
public ExcelException(Throwable cause) {
super(cause);
}
public ExcelException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy