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

net.happyonroad.component.core.ComponentException Maven / Gradle / Ivy

Go to download

The spring component framework is used to setup a plugin based, micro-kernel, standalone application (today, we will support webapp in later releases) which is based on SpringFramework. It can help you decouple your application into several components clearly with zero invasion and keep your application consistent between develop time and runtime.

The newest version!
/**
 * @author XiongJie, Date: 13-8-29
 */
package net.happyonroad.component.core;

/**
 * 组件异常的基类
 */
public class ComponentException extends Exception{
    protected Component component;

    public ComponentException() {
    }

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

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

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

    public Component getComponent() {
        return component;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy