mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
17 lines
313 B
Swift
17 lines
313 B
Swift
|
//
|
||
|
// Error.swift
|
||
|
// mas-cli
|
||
|
//
|
||
|
// Created by Andrew Naylor on 21/08/2015.
|
||
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
||
|
//
|
||
|
|
||
|
public enum MASError: Equatable {
|
||
|
public var description: String {
|
||
|
return ""
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public func == (lhs: MASError, rhs: MASError) -> Bool {
|
||
|
return false
|
||
|
}
|