ValidationErrorReason
public enum ValidationErrorReason
The possible underlying reasons for validation errors.
-
The object is not a dictionary where a dictionary is expected.
Declaration
Swift
case notADictionary(message: String)
-
The size limit for some piece of data has been exceeded.
Declaration
Swift
case sizeLimitExceeded(message: String)
-
The depth limit for dictionary-like data has been exceeded.
Declaration
Swift
case depthLimitExceeded(message: String)