18 lines
334 B
Swift
18 lines
334 B
Swift
//
|
|
// CSVError.swift
|
|
// CSV
|
|
//
|
|
// Created by Yasuhiro Hatta on 2016/06/11.
|
|
// Copyright © 2016 yaslab. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum CSVError: ErrorProtocol {
|
|
// case parameterError
|
|
// case streamError
|
|
case headerReadError
|
|
// case memoryAllocationFailed
|
|
// case stringEncodingMismatch
|
|
}
|