15 lines
312 B
Swift
15 lines
312 B
Swift
//
|
|
// ErrorTypeExtensions.swift
|
|
// EZSwiftExtensionsExample
|
|
//
|
|
// Created by Goktug Yilmaz on 3/23/16.
|
|
// Copyright © 2016 Goktug Yilmaz. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension ErrorType {
|
|
/// EZSE: Converts ErrorType value to String.
|
|
public var toString: String { return String(self) }
|
|
}
|