""" 自定义异常类 提供测试框架的自定义异常。 """ class TestFrameworkError(Exception): """测试框架基础异常""" pass class APIError(TestFrameworkError): """API错误异常""" pass class APITimeoutError(APIError): """API超时异常""" pass class ValidationError(TestFrameworkError): """验证错误异常""" pass class ElementNotFoundError(TestFrameworkError): """元素未找到异常""" pass class TimeoutError(TestFrameworkError): """超时异常""" pass class ConfigurationError(TestFrameworkError): """配置错误异常""" pass