12 lines
265 B
Swift
12 lines
265 B
Swift
import Foundation
|
|
|
|
public extension NSError {
|
|
func alertMessage() -> String {
|
|
if self.wmf_isNetworkConnectionError() {
|
|
return CommonStrings.noInternetConnection
|
|
} else {
|
|
return self.localizedDescription
|
|
}
|
|
}
|
|
}
|