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

com.plugin.development.exception.PluginBeanFactoryException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.plugin.development.exception;

/**
 * 插件bean注册异常
 * @author zhangzhuo
 * @version 1.0
 */
public class PluginBeanFactoryException extends Exception{

    public PluginBeanFactoryException() {
        super();
    }

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

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

    public PluginBeanFactoryException(Throwable cause) {
        super(cause);
    }

    protected PluginBeanFactoryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy