com.fastchar.extjs.exception.FastExtConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.Quickly build a background management system
package com.fastchar.extjs.exception;
public class FastExtConfigException extends RuntimeException {
public FastExtConfigException(String message) {
super(message);
}
public FastExtConfigException() {
super();
}
public FastExtConfigException(String message, Throwable cause) {
super(message, cause);
}
public FastExtConfigException(Throwable cause) {
super(cause);
}
protected FastExtConfigException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy