se.wfh.libs.common.gui.exceptions.FormCreateException Maven / Gradle / Ivy
package se.wfh.libs.common.gui.exceptions;
import se.wfh.libs.common.utils.exceptions.WfhRuntimeException;
public class FormCreateException extends WfhRuntimeException {
private static final long serialVersionUID = 1L;
public FormCreateException() {
super();
}
public FormCreateException(final String message) {
super(message);
}
public FormCreateException(final String message, final Throwable cause) {
super(message, cause);
}
public FormCreateException(final Throwable cause) {
super(cause);
}
}