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

net.cassite.pure.aop.LoggedAfterWeaver Maven / Gradle / Ivy

The newest version!
package net.cassite.pure.aop;

/**
 * After Return
 *
 * @param  target object type
 * @author wkgcass
 * @since 0.1.1
 */
public abstract class LoggedAfterWeaver extends LoggedWeaver {
        @Override
        public final void before(AOPPoint point) {
        }

        @Override
        public final void exception(AOPPoint point) throws Throwable {
                throw point.exception();
        }

        @Override
        protected final void destroy(T target) {
        }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy