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

protocol WireGuardAppError: Error {
    typealias AlertText = (title: String, message: String)
    var alertText: AlertText { get }
}