15b6cf5412
Indicating that no alert is to be shown for that error. Signed-off-by: Roopesh Chander <roop@roopc.net>
7 lines
196 B
Swift
7 lines
196 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
|
|
|
protocol WireGuardAppError: Error {
|
|
func alertText() -> (/* title */ String, /* message */ String)?
|
|
}
|