1 /* 2 * $Header: /cvsroot/sinon/sinon/src/java/eteg/sinon/exception/StepWithFailIfFoundException.java,v 1.2 2005/06/21 14:25:08 thiagohp Exp $ 3 * $Revision: 1.2 $ 4 * $Date: 2005/06/21 14:25:08 $ 5 * $Author: thiagohp $ 6 * 7 * ============================================================================= 8 * 9 * Copyright 2004-2005 Eteg Internet Ltda. (http://www.eteg.com.br) 10 * 11 * Licensed under the Apache License, Version 2.0 (the "License"); 12 * you may not use this file except in compliance with the License. 13 * You may obtain a copy of the License at 14 * 15 * http://www.apache.org/licenses/LICENSE-2.0 16 * 17 * Unless required by applicable law or agreed to in writing, software 18 * distributed under the License is distributed on an "AS IS" BASIS, 19 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 * See the License for the specific language governing permissions and 21 * limitations under the License. 22 */ 23 package eteg.sinon.exception; 24 25 import eteg.sinon.executor.CollectorExecutor; 26 27 /*** 28 * Exceção levantada quando um passo de posicionamento com 29 * <code>failOnError</code> encontra sua referência. 30 * 31 * <pre> 32 * $Header: /cvsroot/sinon/sinon/src/java/eteg/sinon/exception/StepWithFailIfFoundException.java,v 1.2 2005/06/21 14:25:08 thiagohp Exp $ 33 * </pre> 34 * 35 * @author Thiago H. de Paula Figueiredo (last modification by $Author: thiagohp $) 36 * @version $Revision: 1.2 $ 37 * @since 26/09/2004. 38 */ 39 public class StepWithFailIfFoundException extends StepException { 40 41 public StepWithFailIfFoundException(String message, CollectorExecutor executor) { 42 super(message, executor); 43 } 44 45 }