mirror of
https://github.com/Telecominfraproject/wlan-testing.git
synced 2025-10-30 18:38:06 +00:00
21 lines
400 B
Java
21 lines
400 B
Java
package automationTests;
|
|
|
|
/**
|
|
* TestRail API binding for Java (API v2, available since TestRail 3.0)
|
|
*
|
|
* Learn more:
|
|
*
|
|
* http://docs.gurock.com/testrail-api2/start
|
|
* http://docs.gurock.com/testrail-api2/accessing
|
|
*
|
|
* Copyright Gurock Software GmbH. See license.md for details.
|
|
*/
|
|
|
|
public class APIException extends Exception
|
|
{
|
|
public APIException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|