01: package org.araneaframework.framework;
02:
03: import org.araneaframework.core.AraneaRuntimeException;
04: import org.araneaframework.http.filter.StandardClientStateFilterWidget;
05:
06: /**
07: * @deprecated Together with {@link StandardClientStateFilterWidget}
08: */
09: public class NoSerializedClientStateException extends
10: AraneaRuntimeException {
11: public NoSerializedClientStateException() {
12: super ("No data to deserialize present");
13: }
14: }
|