metatext/Mastodon/Sources/Mastodon/Entities/MastodonError.swift
Justin Mazzocchi 9b59e2fbea
wip
2020-08-30 16:33:32 -07:00

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 }
}