com.qa.framework.exception.TestDataNameDuplicatedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-api-framework Show documentation
Show all versions of smart-api-framework Show documentation
Support web service api automaton test based on testng and httpclient
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);
}
}