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

com.qa.framework.exception.TestDataNameDuplicatedException Maven / Gradle / Ivy

There is a newer version: 2.5
Show newest version
package com.qa.framework.exception;

/**
 * Created by apple on 15/11/23.
 */
public class TestDataNameDuplicatedException extends RuntimeException {
    /**
     * Instantiates a new No such param exception.
     *
     * @param fileName the file name
     * @param name     the name
     */
    public TestDataNameDuplicatedException(String fileName, String name) {
        super("The Setup name-" + name + " have duplicated in file-" + fileName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy