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

cn.zhxu.bs.solon.IllegalConfigException Maven / Gradle / Ivy

There is a newer version: 4.3.2
Show newest version
package cn.zhxu.bs.solon;

import cn.zhxu.bs.SearchException;

/**
 * 非法配置异常
 */
public class IllegalConfigException extends SearchException {

    public IllegalConfigException(String message) {
        super(message);
    }

    public IllegalConfigException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy