4 lines
79 B
Swift
4 lines
79 B
Swift
enum Errors: Error {
|
|
case notVariable(String)
|
|
case `default`(String)
|
|
}
|