Skip to content

Commit 27b4ec7

Browse files
bsoyluogluDannyYuyang-quic
authored andcommitted
Fix copy pasta error for the error domain
Differential Revision: D71561719 Pull Request resolved: pytorch#9461
1 parent da208d9 commit 27b4ec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/apple/ExecutorchRuntimeBridge/ExecutorchRuntimeBridge/Exported/ExecutorchRuntimeEngine.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ - (instancetype)initWithModelPath:(NSString *)modelPath
102102
return resultValues;
103103
} catch (...) {
104104
if (error) {
105-
*error = [NSError errorWithDomain:@"LiteInterpreterRuntimeEngine"
105+
*error = [NSError errorWithDomain:@"ExecutorchRuntimeEngine"
106106
code:kInferenceFailed
107107
userInfo:@{NSDebugDescriptionErrorKey : @"Unknown error"}];
108108
}

0 commit comments

Comments
 (0)