
net.cassite.pure.aop.LoggedBeforeWeaver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure.ioc Show documentation
Show all versions of pure.ioc Show documentation
Lightweight type and annotation based dependency injection framework
The newest version!
package net.cassite.pure.aop;
/**
* Before
*
* @param target object type
* @author wkgcass
* @since 0.1.1
*/
public abstract class LoggedBeforeWeaver extends LoggedWeaver {
@Override
protected final void exception(AOPPoint point) throws Throwable {
throw point.exception();
}
@Override
protected final void after(AOPPoint point) {
}
@Override
protected final void destroy(T target) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy