xyz.proteanbear.template.exception.FileSuffixNotSupportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of PbPOITemplate Show documentation
Show all versions of PbPOITemplate Show documentation
The tools is created for easy use of Apache POI.
The newest version!
package xyz.proteanbear.template.exception;
/**
* Throw a exception when file suffix is not supported.
*/
public class FileSuffixNotSupportException extends Exception
{
public FileSuffixNotSupportException()
{
super("The file suffix is not supported");
}
}