mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
13 lines
249 B
Swift
13 lines
249 B
Swift
import Foundation
|
|
|
|
enum SwiftLintError: LocalizedError {
|
|
case usageError(description: String)
|
|
|
|
var errorDescription: String? {
|
|
switch self {
|
|
case .usageError(let description):
|
|
return description
|
|
}
|
|
}
|
|
}
|