com.github.pjfanning.xlsx.exceptions.NotSupportedException Maven / Gradle / Ivy
The newest version!
package com.github.pjfanning.xlsx.exceptions;
public class NotSupportedException extends ExcelRuntimeException {
public NotSupportedException() {
super();
}
public NotSupportedException(String msg) {
super(msg);
}
public NotSupportedException(Exception e) {
super(e);
}
public NotSupportedException(String msg, Exception e) {
super(msg, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy