We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb4d970 commit e6cb4ddCopy full SHA for e6cb4dd
onnxruntime/core/providers/openvino/exceptions.h
@@ -48,7 +48,8 @@ struct ovep_exception : public std::exception {
48
return {category_ort, common::INVALID_GRAPH, message};
49
}
50
51
- return Status::OK();
+ std::string error_message = "Unhandled exception type: " + std::to_string(static_cast<int>(type_));
52
+ return {category_ort, common::FAIL, error_message};
53
54
55
protected:
0 commit comments