2018-12-06 10:43:48 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2023-02-14 15:10:32 +00:00
|
|
|
// Copyright © 2018-2023 WireGuard LLC. All Rights Reserved.
|
2018-12-06 10:43:48 +00:00
|
|
|
|
|
|
|
protocol WireGuardAppError: Error {
|
2018-12-13 03:09:52 +00:00
|
|
|
typealias AlertText = (title: String, message: String)
|
2018-12-21 22:34:56 +00:00
|
|
|
|
2018-12-13 18:58:50 +00:00
|
|
|
var alertText: AlertText { get }
|
2018-12-06 10:43:48 +00:00
|
|
|
}
|