1 package edu.internet2.middleware.shibboleth.wayf.plugins;
2
3 /**
4 *
5 * This Exception can be signalled by a plugin to indicate to the WAYF that it has handled the
6 * request and all processing should stop.
7 *
8 * @author Rod Widdowson
9 */
10 public class WayfRequestHandled extends Exception {
11
12 /**
13 * Required Serialization constant.
14 */
15 private static final long serialVersionUID = 3022489208153734092L;
16
17 }