iOS/Sources/Shared/Intents/PickAServerError.swift

11 lines
297 B
Swift

import Foundation
enum PickAServerError {
// NSError because LocalizedError doesn't send messages through
static var error: NSError {
.init(domain: "HAShortcuts", code: -1, userInfo: [
NSLocalizedDescriptionKey: L10n.Intents.serverRequiredForValue,
])
}
}