aboutsummaryrefslogtreecommitdiffstats
path: root/Sources/WireGuardApp/WireGuardAppError.swift
blob: e02ba5f3931a015e26090d899c31bfe4c206ad2b (plain) (blame)
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: MIT
// Copyright © 2018-2023 WireGuard LLC. All Rights Reserved.

protocol WireGuardAppError: Error {
    typealias AlertText = (title: String, message: String)

    var alertText: AlertText { get }
}