com.qa.framework.exception.NoSuchSqlException 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 NoSuchSqlException extends RuntimeException {
/**
* Instantiates a new No such sql exception.
*
* @param name the name
*/
public NoSuchSqlException(String name) {
super("找不到" + name + "这个Sql对象");
}
}