ACMPropertyListSerializationError
public enum ACMPropertyListSerializationError : Error
extension ACMPropertyListSerializationError: LocalizedError
ACMPropertyListSerializationError
Enumeration for holding the data serialization errors
-
Serialization error when file is not found in plist
Declaration
Swift
case fileNotFound
-
Serialization error when file plist is not parsed
Declaration
Swift
case fileNotParsed
-
Serialization error when plist data not available
Declaration
Swift
case dataNotAvailable
-
Serialization error when plist model not parsed
Declaration
Swift
case modelNotParsed
-
Serialization error when config not loaded
Declaration
Swift
case configNotLoaded
-
Serialization error when plist data is corrupted
Declaration
Swift
case dataCorrupted(context: DecodingError.Context)
-
Serialization error when coding key is not found
Declaration
Swift
case keyNotFound(key: CodingKey, context: DecodingError.Context)
-
Serialization error when plist property value is not found
Declaration
Swift
case valueNotFound(value: Any, context: DecodingError.Context)
-
Serialization error when value type is not matched in plist
Declaration
Swift
case typeMismatch(type: Any, context: DecodingError.Context)
-
Error description holds plist serialization errors
Declaration
Swift
public var errorDescription: String? { get }