com.monitorjbl.xlsx.exceptions.NotSupportedException Maven / Gradle / Ivy
package com.monitorjbl.xlsx.exceptions;
public class NotSupportedException extends RuntimeException {
public NotSupportedException() {
super();
}
public NotSupportedException(String msg) {
super(msg);
}
public NotSupportedException(Exception e) {
super(e);
}
public NotSupportedException(String msg, Exception e) {
super(msg, e);
}
}