Superman/Sources/SupermanMacros/Error.swift

10 lines
166 B
Swift
Raw Normal View History

2024-09-17 22:06:48 +00:00
enum Error: Swift.Error, CustomStringConvertible {
case message(String)
var description: String {
switch self {
case .message(let text): return text
}
}
}