com.github.rrsunhome.excelsql.viewer.ViewOutputException Maven / Gradle / Ivy
package com.github.rrsunhome.excelsql.viewer;
/**
* @author : wangqijia
* create at: 2021/10/31 下午10:56
*/
public class ViewOutputException extends RuntimeException {
public ViewOutputException(String message) {
super(message);
}
public ViewOutputException(String message, Throwable cause) {
super(message, cause);
}
}