KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > madvoc > interceptor > DefaultMadvocInterceptors


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.madvoc.interceptor;
4
5 import jodd.madvoc.MadvocException;
6 import jodd.madvoc.ActionRequest;
7
8 /**
9  * Marker for default interceptors.
10  */

11 public final class DefaultMadvocInterceptors implements ActionInterceptor {
12
13     public DefaultMadvocInterceptors() {
14     }
15
16     public String JavaDoc intercept(ActionRequest actionRequest) throws Exception JavaDoc {
17         throw new MadvocException("DefaultInterceptors should be not used as a regular interceptor.");
18     }
19 }
20
Popular Tags