mirror of
https://github.com/metabolist/metatext
synced 2024-12-13 01:46:30 +01:00
14 lines
345 B
Swift
14 lines
345 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
import ViewModels
|
|
|
|
extension ShareExtensionError: LocalizedError {
|
|
public var errorDescription: String? {
|
|
switch self {
|
|
case .noAccountFound:
|
|
return NSLocalizedString("share-extension-error.no-account-found", comment: "")
|
|
}
|
|
}
|
|
}
|