| 340 | public: |
| 341 | TVM_FFI_COLD_CODE |
| 342 | explicit ErrorBuilder(std::string kind, std::string backtrace, bool log_before_throw) |
| 343 | : kind_(std::move(kind)), |
| 344 | backtrace_(std::move(backtrace)), |
| 345 | log_before_throw_(log_before_throw) {} |
| 346 | |
| 347 | TVM_FFI_COLD_CODE |
| 348 | explicit ErrorBuilder(std::string kind, const TVMFFIByteArray* backtrace, bool log_before_throw) |
nothing calls this directly
no test coverage detected