package org.marketcetera.module; import org.marketcetera.util.misc.ClassVersion; import org.marketcetera.util.log.I18NBoundMessage; /* $License$ */ /** * Indicates data flow errors. * * @author anshul@marketcetera.com * @version $Id: DataFlowException.java 16154 2012-07-14 16:34:05Z colin $ * @since 1.0.0 */ @ClassVersion("$Id: DataFlowException.java 16154 2012-07-14 16:34:05Z colin $") //$NON-NLS-1$ public class DataFlowException extends ModuleException { /** * Creates an instance. * * @param inCause the underlying cause */ public DataFlowException(Throwable inCause) { super(inCause); } /** * Creates an instance. * * @param inMessage the error message. */ protected DataFlowException(I18NBoundMessage inMessage) { super(inMessage); } /** * Creates an instance. * * @param inCause the underlying cause * @param inMessage the error message */ protected DataFlowException(Throwable inCause, I18NBoundMessage inMessage) { super(inCause, inMessage); } private static final long serialVersionUID = -7224891693493920871L; }