Update of /cvsroot/jwebunit/jWebUnit/src/net/sourceforge/jwebunit/exception
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2169/src/net/sourceforge/jwebunit/exception
Added Files:
TestingEngineResponseException.java
Log Message:
new exception to be used by all Dialog or Testing Engine for recieving errors
back to the WebTester.
--- NEW FILE: TestingEngineResponseException.java ---
/********************************************************************************
* Copyright (c) 2001, ThoughtWorks, Inc.
* Distributed open-source, see full license under licenses/jwebunit_license.txt
**********************************/
package net.sourceforge.jwebunit.exception;
/**
* This name reflects the name all of exceptions that will be thrown
* from a specific "testing engine" or soon deprecated name of "dialog".
*
* All testing engines will respond, if necessary, using this exception instead
* of the testing specific engine exceptions.
*
* Example: HttpUnit is SAX based and depending on specific operations from
httpunit
* a SAXException is thrown, but the HttpUnitDialog method
will catch the
* original exception and wrap inside this
TestingEngineResponseException
*
* @author Nicholas Neuberger
*/
public class TestingEngineResponseException extends Exception {
/**
*
*/
public TestingEngineResponseException() {
super();
}
/**
* @param arg0
*/
public TestingEngineResponseException(String arg0) {
super(arg0);
}
/**
* @param arg0
* @param arg1
*/
public TestingEngineResponseException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
/**
* @param arg0
*/
public TestingEngineResponseException(Throwable arg0) {
super(arg0);
}
}
-------------------------------------------------------
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