mirror of
https://github.com/ypresto/SwiftLintXcode.git
synced 2026-03-25 08:55:51 +00:00
15 lines
355 B
Swift
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
|
|
])
|
|
}
|