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

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