gh-ypresto-SwiftLintXcode/SwiftLintXcode/errorHelper.swift
2016-10-15 20:55:18 +09:00

15 lines
355 B
Swift

//
// errorHelper.swift
// SwiftLintXcode
//
// Created by yuya.tanaka on 2016/04/06.
// Copyright © 2016 Yuya Tanaka. All rights reserved.
//
import Foundation
func errorWithMessage(_ message: String) -> NSError {
return NSError(domain: "net.ypresto.SwiftLintXcode", code: 0, userInfo: [
NSLocalizedDescriptionKey: message
])
}