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

com.xceptance.xlt.api.actions.RunMethodStateException Maven / Gradle / Ivy

Go to download

XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.

There is a newer version: 8.1.0
Show newest version
package com.xceptance.xlt.api.actions;

/**
 * This exception indicates, that the run() method of an {@link AbstractAction} has already been called.
 * 
 * @author René Schwietzke (Xceptance Software Technologies GmbH)
 */
public class RunMethodStateException extends IllegalStateException
{
    /**
     * Serial version id.
     */
    private static final long serialVersionUID = 1L;

    /**
     * Constructor.
     */
    public RunMethodStateException()
    {
        super("run() method was already called. Can only be executed once.");
    }

    /**
     * Constructor.
     * 
     * @param msg
     *            message to report
     */
    public RunMethodStateException(final String msg)
    {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy