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

com.hn.poi.WordException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.poi;

/**
 * 描述:
 * word解析异常
 * @author fei
 */
public class WordException extends RuntimeException {
    public WordException() {
    }
    public WordException(String message) {
        super(message);
    }

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

    public static WordException exception(String message){
        return new WordException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy