Uses of Enum Class
cloud.opencode.base.test.exception.TestErrorCode
Packages that use TestErrorCode
-
Uses of TestErrorCode in cloud.opencode.base.test.exception
Subclasses with type arguments of type TestErrorCode in cloud.opencode.base.test.exceptionMethods in cloud.opencode.base.test.exception that return TestErrorCodeModifier and TypeMethodDescriptionTestException.getTestErrorCode()Get the typed test error code 获取类型化的测试错误码static TestErrorCodeReturns the enum constant of this class with the specified name.static TestErrorCode[]TestErrorCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in cloud.opencode.base.test.exception with parameters of type TestErrorCodeModifierConstructorDescriptionAssertionException(TestErrorCode errorCode) Creates assertion exception with error code.AssertionException(TestErrorCode errorCode, String detail) Creates assertion exception with error code and detail.BenchmarkException(TestErrorCode errorCode) Creates benchmark exception with error code.BenchmarkException(TestErrorCode errorCode, String detail) Creates benchmark exception with error code and detail.DataGenerationException(TestErrorCode errorCode) Creates data generation exception with error code.DataGenerationException(TestErrorCode errorCode, String detail) Creates data generation exception with error code and detail.MockException(TestErrorCode errorCode) Creates mock exception with error code.MockException(TestErrorCode errorCode, String detail) Creates mock exception with error code and detail.TestException(TestErrorCode errorCode) Create test exception with error code 使用错误码创建测试异常TestException(TestErrorCode errorCode, String detail) Create test exception with error code and detail 使用错误码和详情创建测试异常TestException(TestErrorCode errorCode, Throwable cause) Create test exception with error code and cause 使用错误码和原因创建测试异常