kz.greetgo.msoffice.LeftFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.msoffice Show documentation
Show all versions of greetgo.msoffice Show documentation
greetgo library to generate or parse MS Office files
package kz.greetgo.msoffice;
public class LeftFileException extends RuntimeException {
private static final long serialVersionUID = 4609950215490132611L;
public LeftFileException() {}
public LeftFileException(String message, Throwable cause) {
super(message, cause);
}
public LeftFileException(String message) {
super(message);
}
public LeftFileException(Throwable cause) {
super(cause);
}
}