mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
7 lines
186 B
Swift
7 lines
186 B
Swift
package struct StringError: Error, CustomStringConvertible {
|
|
package var description: String
|
|
package init(_ description: String) {
|
|
self.description = description
|
|
}
|
|
}
|