01: /******************************************************************************
02: * jWebUnit project (http://jwebunit.sourceforge.net) *
03: * Distributed open-source, see full license under LICENCE.txt *
04: ******************************************************************************/package net.sourceforge.jwebunit.exception;
05:
06: /**
07: * Exception thrown when the testing engine registry can't find the appropriat key for a specific testing engine, etc.
08: *
09: * @author Nick Neuberger
10: */
11: public class TestingEngineRegistryException extends RuntimeException {
12: public TestingEngineRegistryException() {
13: }
14:
15: public TestingEngineRegistryException(String s) {
16: super(s);
17: }
18: }
|