net.happyonroad.spring.ServiceNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-component-framework Show documentation
Show all versions of spring-component-framework Show documentation
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-10-30
*/
package net.happyonroad.spring;
/** 服务未找到异常 */
public class ServiceNotFoundException extends Exception {
private final SpringServiceImporter importer;
public ServiceNotFoundException(SpringServiceImporter importer) {
super("Can't find service " + importer + " in global registry");
this.importer = importer;
}
@SuppressWarnings("UnusedDeclaration")
public SpringServiceImporter getImporter() {
return importer;
}
}