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

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

    var alertText: AlertText { get }
}