1 3 package jodd.madvoc.interceptor; 4 5 import jodd.madvoc.MadvocException; 6 import jodd.madvoc.ActionRequest; 7 8 11 public final class DefaultMadvocInterceptors implements ActionInterceptor { 12 13 public DefaultMadvocInterceptors() { 14 } 15 16 public String intercept(ActionRequest actionRequest) throws Exception { 17 throw new MadvocException("DefaultInterceptors should be not used as a regular interceptor."); 18 } 19 } 20 | Popular Tags |