001// Copyright (c) 2001 Hursh Jain (http://www.mollypages.org) 
002// The Molly framework is freely distributable under the terms of an
003// MIT-style license. For details, see the molly pages web site at:
004// http://www.mollypages.org/. Use, modify, have fun !
005
006package fc.web.forms;
007
008import java.io.*;
009import java.util.*;
010import javax.servlet.*;
011
012/**
013/** 
014Represents a bad (possibly hacked) value returned by the client.
015
016@author hursh jain
017*/
018public class SubmitHackedException extends ServletException
019{
020public SubmitHackedException(String msg)
021  {
022  super(msg);
023  }
024}