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

org.ofdrw.layout.exception.DocReadException Maven / Gradle / Ivy

The newest version!
package org.ofdrw.layout.exception;

import java.io.IOException;

/**
 * OFD文件解析异常
 *
 * @author 权观宇
 * @since 2020-04-11 17:03:52
 */
public class DocReadException extends IOException {
    public DocReadException() {
    }

    public DocReadException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy