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

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

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

/**
 * weaver that destroys target and is with log
 */
public abstract class LoggedDestroyWeaver extends LoggedWeaver {
        @Override
        protected final void before(AOPPoint point) {
        }

        @Override
        protected final void after(AOPPoint point) {
        }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy