mirror of
https://github.com/metabolist/metatext.git
synced 2025-05-10 19:54:42 +00:00
11 lines
247 B
Swift
11 lines
247 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public struct MastodonError: Error, Codable {
|
|
public let error: String
|
|
}
|
|
|
|
extension MastodonError: LocalizedError {
|
|
public var errorDescription: String? { error }
|
|
}
|