All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.extjs.exception.FastExtConfigException Maven / Gradle / Ivy

Go to download

FastChar-ExtJs is a Java Web framework that uses extjs libraries.Quickly build a background management system

There is a newer version: 2.2.2
Show newest version
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