All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.marketcetera.strategy.StrategyException Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package org.marketcetera.strategy;

import org.marketcetera.core.ClassVersion;
import org.marketcetera.core.CoreException;
import org.marketcetera.util.log.I18NBoundMessage;

/* $License$ */

/**
 * An exception thrown during execution of a {@link Strategy}.
 *
 * @author Colin DuPlantis
 * @version $Id: StrategyException.java 16154 2012-07-14 16:34:05Z colin $
 * @since 1.0.0
 */
@ClassVersion("$Id: StrategyException.java 16154 2012-07-14 16:34:05Z colin $")
public class StrategyException
        extends CoreException
{
    private static final long serialVersionUID = -2152924775246996522L;
    /**
     * Create a new StrategyException instance.
     *
     * @param inNested
     */
    public StrategyException(Throwable inNested)
    {
        super(inNested);
    }
    /**
     * Create a new StrategyException instance.
     *
     * @param inMessage
     */
    public StrategyException(I18NBoundMessage inMessage)
    {
        super(inMessage);
    }
    /**
     * Create a new StrategyException instance.
     *
     * @param inNested
     * @param inMessage
     */
    public StrategyException(Throwable inNested,
                             I18NBoundMessage inMessage)
    {
        super(inNested,
              inMessage);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy