| 12345678910111213141516171819202122232425 |
- // Copyright 2023 KURZ Digital Solutions GmbH
- //
- // SPDX-License-Identifier: Apache-2.0
- #import "ZXIErrors.h"
- void SetNSError(NSError *__autoreleasing _Nullable* error,
- NSInteger code,
- const char* message) {
- if (error == nil) {
- return;
- }
- NSString *errorDescription = @"Unknown C++ error";
- if (message && strlen(message) > 0) {
- errorDescription = [NSString stringWithUTF8String: message];
- if (errorDescription == nil) {
- errorDescription = [NSString stringWithCString: message
- encoding: NSASCIIStringEncoding];
- }
- }
- NSDictionary *userInfo = @{ NSLocalizedDescriptionKey: errorDescription };
- *error = [NSError errorWithDomain:ZXIErrorDomain
- code:code
- userInfo:userInfo];
- }
|