01: // Copyright © 2002-2005 Canoo Engineering AG, Switzerland. 02: package com.canoo.webtest.self; 03: 04: import com.canoo.webtest.engine.StepFailedException; 05: 06: public class FailStepStub extends StepStub { 07: public void doExecute() { 08: throw new StepFailedException("A failure", this); 09: } 10: }