ValidatorError

public struct ValidatorError: Error, CustomStringConvertible

Error that is thrown when a validation fails. Proivdes the validator type and the value that failed validation

  • The value that failed validation.

    Declaration

    Swift

    public let wrapperValue: Any
  • Type of a specific Validator. Any is used because Validator has associated type requirements.

    Declaration

    Swift

    public let validator: Any.Type
  • Type of a specific Validator. Any is used because Validator has associated type requirements.

    Declaration

    Swift

    public var description: String