1 /******************************************************************************** 2 * Copyright (c) 2001, ThoughtWorks, Inc. 3 * Distributed open-source, see full license under licenses/jwebunit_license.txt 4 **********************************/ 5 package net.sourceforge.jwebunit; 6 7 import junit.framework.AssertionFailedError; 8 9 /** 10 * Represents a problem establishing a form on the current response for 11 * which a request is to be built. 12 * 13 * @author Wilkes Joiner 14 */ 15 public class UnableToSetFormException extends AssertionFailedError { 16 public UnableToSetFormException() { 17 } 18 19 public UnableToSetFormException(String s) { 20 super(s); 21 } 22 } 23