Fileable.swift/Sources/Fileable/Errors.swift

18 lines
283 B
Swift

//
// Errors.swift
// Fileable
//
// Created by Shota Shimazu on 2017/10/25.
// Copyright © 2017 Shota Shimazu. All rights reserved.
//
import Foundation
enum FileableError: Error {
case NotExists
case AleardyExists
case PermissionError
case Unkown(String)
}