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

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

    var alertText: AlertText { get }
}