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

ru.yandex.qatools.fsm.FSMException Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package ru.yandex.qatools.fsm;

/**
 * @author Ilya Sadykov (mailto: [email protected])
 */
public class FSMException extends Exception {

    public FSMException(String message) {
        super(message);
    }

    public FSMException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy