Update of /cvsroot/jwebunit/jWebUnit/src/net/sourceforge/jwebunit/exception
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17683/src/net/sourceforge/jwebunit/exception

Added Files:
        TestingEngineRegistryException.java 
        UnableToSetFormException.java 
Log Message:
moving exceptions to specific package for better organization.

--- NEW FILE: TestingEngineRegistryException.java ---
/********************************************************************************
 * Copyright (c) 2001, ThoughtWorks, Inc.
 * Distributed open-source, see full license under licenses/jwebunit_license.txt
**********************************/
package net.sourceforge.jwebunit.exception;


/**
 * Exception thrown when the testing engine registry can't find the
 * appropriat key for a specific testing engine, etc.
 * @author Nick Neuberger
 */
public class TestingEngineRegistryException extends RuntimeException {
    public TestingEngineRegistryException() {
    }

    public TestingEngineRegistryException(String s) {
        super(s);
    }
}

--- NEW FILE: UnableToSetFormException.java ---
/********************************************************************************
 * Copyright (c) 2001, ThoughtWorks, Inc.
 * Distributed open-source, see full license under licenses/jwebunit_license.txt
**********************************/
package net.sourceforge.jwebunit.exception;

import junit.framework.AssertionFailedError;

/**
 * Represents a problem establishing a form on the current response for
 * which a request is to be built.
 *
 * @author Wilkes Joiner
 */
public class UnableToSetFormException extends AssertionFailedError {
    public UnableToSetFormException() {
    }

    public UnableToSetFormException(String s) {
        super(s);
    }
}



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development

Reply via email to