13 lines
350 B
Swift
13 lines
350 B
Swift
|
// SPDX-License-Identifier: MIT
|
||
|
// Copyright © 2018-2021 WireGuard LLC. All Rights Reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public enum WireGuardProviderError: String, Error {
|
||
|
case savedProtocolConfigurationIsInvalid
|
||
|
case dnsResolutionFailure
|
||
|
case couldNotStartBackend
|
||
|
case couldNotDetermineFileDescriptor
|
||
|
case couldNotSetNetworkSettings
|
||
|
}
|