1 /* 2 * StopProcessingException.java 3 * 4 * Created on August 4, 2004, 11:31 AM 5 */ 6 7 package sync4j.framework.engine.pipeline; 8 9 import sync4j.framework.core.Sync4jException; 10 11 /** 12 * This exception is used by message processing pipeline components to tell the 13 * pipeline manager that the processing of the next components should be skipped. 14 * Note that this is a suggestion for the manager, who could determine to 15 * execute anyway the components following in the pipeline. See the documentation 16 * of the manager to see how the StopProcessingException is handled. 17 * 18 * @author Stefano Fornari 19 * 20 * @version $Id: StopProcessingException.java,v 1.1 2004/08/04 17:30:19 stefano_fornari Exp $ 21 */ 22 public class StopProcessingException extends Sync4jException { 23 24 /** 25 * Creates a new instance of StopProcessingException 26 * 27 * @param msg additional information to provide to the manager 28 */ 29 public StopProcessingException(String msg) { 30 super(msg); 31 } 32 } 33