Raised when DPDK build fails for any reason.
| 128 | |
| 129 | |
| 130 | class DPDKBuildError(DTSError): |
| 131 | """ |
| 132 | Raised when DPDK build fails for any reason. |
| 133 | """ |
| 134 | |
| 135 | severity: ClassVar[ErrorSeverity] = ErrorSeverity.DPDK_BUILD_ERR |
| 136 | |
| 137 | |
| 138 | class TestCaseVerifyError(DTSError): |