com.github.shootercheng.export.exception.ParamBuildException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-export Show documentation
Show all versions of common-export Show documentation
Memory export, Querying export CSV, Excel
package com.github.shootercheng.export.exception;
/**
* @author James
*/
public class ParamBuildException extends RuntimeException {
public ParamBuildException(String message) {
super(message);
}
public ParamBuildException(String message, Throwable cause) {
super(message, cause);
}
}