EvaluationError
public enum EvaluationError : LocalizedError
A type of error thrown when evaluation fails
-
Parameter isn’t found or somehting went wrong with them
Declaration
Swift
case parameters(String) -
The function provided is missing
Declaration
Swift
case functionError -
Children are missing
Declaration
Swift
case missingChildren -
The operation you’re trying to do is impossible
Declaration
Swift
case ImpossibleOperation -
The error description
Required to conform to
LocalizedErrorDeclaration
Swift
public var errorDescription: String? { get }
View on GitHub
EvaluationError Enumeration Reference