5 lines
148 B
Swift
5 lines
148 B
Swift
|
|
public enum ParsingError : Error {
|
||
|
|
case MalformedJSON(reason: String)
|
||
|
|
case ConfigFileNotExistent
|
||
|
|
case ImpossibleToWriteKeyToFileSystem
|
||
|
|
}
|