20 lines
379 B
Swift
20 lines
379 B
Swift
//
|
|
// File.swift
|
|
// Pingo
|
|
//
|
|
// Created by Jeff Potter on 11/11/14.
|
|
// Copyright (c) 2014 Byron Mackay. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class ValidationError {
|
|
let textField:UITextField
|
|
let error:ValidationErrorType
|
|
|
|
init(textField:UITextField, error:ValidationErrorType){
|
|
self.textField = textField
|
|
self.error = error
|
|
}
|
|
|
|
} |